blob: 2192036ed998f7aa186ea7e1d3924b9e9acc1f13 [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 Moolenaar071d4272004-06-13 20:20:40 +0000292#endif
293
Bram Moolenaare1004402020-10-24 20:49:43 +0200294 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100295 buf->b_p_swf = FALSE;
296
Bram Moolenaar4770d092006-01-12 23:22:24 +0000297 /*
298 * When 'updatecount' is non-zero swap file may be opened later.
299 */
300 if (p_uc && buf->b_p_swf)
301 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000303 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304
Bram Moolenaar4770d092006-01-12 23:22:24 +0000305 /*
306 * Open the memfile. No swap file is created yet.
307 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308 mfp = mf_open(NULL, 0);
309 if (mfp == NULL)
310 goto error;
311
Bram Moolenaar4770d092006-01-12 23:22:24 +0000312 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200313#ifdef FEAT_CRYPT
314 mfp->mf_buffer = buf;
315#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000316 buf->b_ml.ml_flags = ML_EMPTY;
317 buf->b_ml.ml_line_count = 1;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000318#ifdef FEAT_LINEBREAK
319 curwin->w_nrwidth_line_count = 0;
320#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322/*
323 * fill block0 struct and write page 0
324 */
325 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
326 goto error;
327 if (hp->bh_bnum != 0)
328 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100329 iemsg(_("E298: Didn't get block nr 0?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330 goto error;
331 }
332 b0p = (ZERO_BL *)(hp->bh_data);
333
334 b0p->b0_id[0] = BLOCK0_ID0;
335 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
337 b0p->b0_magic_int = (int)B0_MAGIC_INT;
338 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
339 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200340 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000343
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000344#ifdef FEAT_SPELL
345 if (!buf->b_spell)
346#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000347 {
348 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
349 b0p->b0_flags = get_fileformat(buf) + 1;
350 set_b0_fname(b0p, buf);
351 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
352 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
353 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
354 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
355 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200356#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200357 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200358#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000359 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360
361 /*
362 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200363 * the swap file in findswapname(). Don't do this for a help files or
364 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365 * Only works when there's a swapfile, otherwise it's done when the file
366 * is created.
367 */
368 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000369 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 (void)mf_sync(mfp, 0);
371
Bram Moolenaar4770d092006-01-12 23:22:24 +0000372 /*
373 * Fill in root pointer block and write page 1.
374 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 if ((hp = ml_new_ptr(mfp)) == NULL)
376 goto error;
377 if (hp->bh_bnum != 1)
378 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100379 iemsg(_("E298: Didn't get block nr 1?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 goto error;
381 }
382 pp = (PTR_BL *)(hp->bh_data);
383 pp->pb_count = 1;
384 pp->pb_pointer[0].pe_bnum = 2;
385 pp->pb_pointer[0].pe_page_count = 1;
386 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100387 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 mf_put(mfp, hp, TRUE, FALSE);
389
Bram Moolenaar4770d092006-01-12 23:22:24 +0000390 /*
391 * Allocate first data block and create an empty line 1.
392 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
394 goto error;
395 if (hp->bh_bnum != 2)
396 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100397 iemsg(_("E298: Didn't get block nr 2?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 goto error;
399 }
400
401 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100402 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 dp->db_free -= 1 + INDEX_SIZE;
404 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100405 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406
407 return OK;
408
409error:
410 if (mfp != NULL)
411 {
412 if (hp)
413 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100414 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000416 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 return FAIL;
418}
419
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200420#if defined(FEAT_CRYPT) || defined(PROTO)
421/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200422 * Prepare encryption for "buf" for the current key and method.
423 */
424 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100425ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200426{
427 if (*buf->b_p_key != NUL)
428 {
429 int method_nr = crypt_get_method_nr(buf);
430
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200431 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200432 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100433 // Generate a seed and store it in the memfile.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200434 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
435 }
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200436#ifdef FEAT_SODIUM
437 else if (method_nr == CRYPT_M_SOD)
438 randombytes_buf(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN);
439 #endif
Bram Moolenaar2be79502014-08-13 21:58:28 +0200440 }
441}
442
443/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200444 * Prepare encryption for "buf" with block 0 "b0p".
445 */
446 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100447ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200448{
449 if (*buf->b_p_key == NUL)
450 b0p->b0_id[1] = BLOCK0_ID1;
451 else
452 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200453 int method_nr = crypt_get_method_nr(buf);
454
455 b0p->b0_id[1] = id1_codes[method_nr];
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200456 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200457 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100458 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200459 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
460 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
461 }
462 }
463}
464
465/*
466 * Called after the crypt key or 'cryptmethod' was changed for "buf".
467 * Will apply this to the swapfile.
468 * "old_key" is the previous key. It is equal to buf->b_p_key when
469 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200470 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
471 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200472 */
473 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100474ml_set_crypt_key(
475 buf_T *buf,
476 char_u *old_key,
477 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200478{
479 memfile_T *mfp = buf->b_ml.ml_mfp;
480 bhdr_T *hp;
481 int page_count;
482 int idx;
483 long error;
484 infoptr_T *ip;
485 PTR_BL *pp;
486 DATA_BL *dp;
487 blocknr_T bnum;
488 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200489 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200490
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200491 if (mfp == NULL || mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100492 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200493 old_method = crypt_method_nr_from_name(old_cm);
494
Christian Brabandt226b28b2021-06-21 21:08:08 +0200495 // Swapfile encryption not supported by XChaCha20
496 if (crypt_get_method_nr(buf) == CRYPT_M_SOD && *buf->b_p_key != NUL)
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200497 {
498 // close the swapfile
499 mf_close_file(buf, TRUE);
500 buf->b_p_swf = FALSE;
501 return;
502 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100503 // First make sure the swapfile is in a consistent state, using the old
504 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200505 {
506 char_u *new_key = buf->b_p_key;
507 char_u *new_buf_cm = buf->b_p_cm;
508
509 buf->b_p_key = old_key;
510 buf->b_p_cm = old_cm;
511 ml_preserve(buf, FALSE);
512 buf->b_p_key = new_key;
513 buf->b_p_cm = new_buf_cm;
514 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200515
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100516 // Set the key, method and seed to be used for reading, these must be the
517 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200518 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200519 mfp->mf_old_cm = old_method;
520 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200521 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
522
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100523 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200524 ml_upd_block0(buf, UB_CRYPT);
525
526 if (mfp->mf_infile_count > 2)
527 {
528 /*
529 * Need to read back all data blocks from disk, decrypt them with the
530 * old key/method and mark them to be written. The algorithm is
531 * similar to what happens in ml_recover(), but we skip negative block
532 * numbers.
533 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100534 ml_flush_line(buf); // flush buffered line
535 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200536
537 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100538 bnum = 1; // start with block 1
539 page_count = 1; // which is 1 page
540 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200541 error = 0;
542 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100543 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100544 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200545
546 for ( ; !got_int; line_breakcheck())
547 {
548 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100549 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200550
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100551 // get the block (pointer or data)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200552 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
553 {
554 if (bnum == 1)
555 break;
556 ++error;
557 }
558 else
559 {
560 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100561 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200562 {
563 if (pp->pb_count == 0)
564 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100565 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200566 ++error;
567 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100568 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200569 {
570 if (pp->pb_pointer[idx].pe_bnum < 0)
571 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100572 // Skip data block with negative block number.
573 // Should not happen, because of the ml_preserve()
574 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100575 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200576 continue;
577 }
578
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100579 // going one block deeper in the tree, new entry in
580 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200581 if ((top = ml_add_stack(buf)) < 0)
582 {
583 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100584 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200585 }
586 ip = &(buf->b_ml.ml_stack[top]);
587 ip->ip_bnum = bnum;
588 ip->ip_index = idx;
589
590 bnum = pp->pb_pointer[idx].pe_bnum;
591 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200592 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200593 continue;
594 }
595 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100596 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200597 {
598 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100599 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200600 ++error;
601 else
602 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100603 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200604 mf_put(mfp, hp, TRUE, FALSE);
605 hp = NULL;
606 }
607 }
608 }
609
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100610 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200611 break;
612
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100613 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200614 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
615 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100616 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200617 page_count = 1;
618 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200619 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100620 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100621
622 if (error > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100623 emsg(_("E843: Error while updating swap file crypt"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200624 }
625
626 mfp->mf_old_key = NULL;
627}
628#endif
629
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630/*
631 * ml_setname() is called when the file name of "buf" has been changed.
632 * It may rename the swap file.
633 */
634 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100635ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636{
637 int success = FALSE;
638 memfile_T *mfp;
639 char_u *fname;
640 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100641#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 char_u *p;
643#endif
644
645 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100646 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 {
648 /*
649 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
650 * For help files we will make a swap file now.
651 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200652 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100653 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 return;
655 }
656
657 /*
658 * Try all directories in the 'directory' option.
659 */
660 dirp = p_dir;
661 for (;;)
662 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100663 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000665 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100666 // alloc's fname
667 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200668 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100669 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 continue;
671
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100672#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 /*
674 * Set full pathname for swap file now, because a ":!cd dir" may
675 * change directory without us knowing it.
676 */
677 p = FullName_save(fname, FALSE);
678 vim_free(fname);
679 fname = p;
680 if (fname == NULL)
681 continue;
682#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100683 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 if (fnamecmp(fname, mfp->mf_fname) == 0)
685 {
686 vim_free(fname);
687 success = TRUE;
688 break;
689 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100690 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 if (mfp->mf_fd >= 0)
692 {
693 close(mfp->mf_fd);
694 mfp->mf_fd = -1;
695 }
696
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100697 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 if (vim_rename(mfp->mf_fname, fname) == 0)
699 {
700 success = TRUE;
701 vim_free(mfp->mf_fname);
702 mfp->mf_fname = fname;
703 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100704#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100705 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706#else
707 mf_set_ffname(mfp);
708#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200709 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 break;
711 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100712 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 }
714
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100715 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 {
717 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
718 if (mfp->mf_fd < 0)
719 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100720 // could not (re)open the swap file, what can we do????
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100721 emsg(_("E301: Oops, lost the swap file!!!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 return;
723 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000724#ifdef HAVE_FD_CLOEXEC
725 {
726 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
727 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100728 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000729 }
730#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 }
732 if (!success)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100733 emsg(_("E302: Could not rename swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734}
735
736/*
737 * Open a file for the memfile for all buffers that are not readonly or have
738 * been modified.
739 * Used when 'updatecount' changes from zero to non-zero.
740 */
741 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100742ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743{
744 buf_T *buf;
745
Bram Moolenaar29323592016-07-24 22:04:11 +0200746 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 if (!buf->b_p_ro || buf->b_changed)
748 ml_open_file(buf);
749}
750
751/*
752 * Open a swap file for an existing memfile, if there is no swap file yet.
753 * If we are unable to find a file name, mf_fname will be NULL
754 * and the memfile will be in memory only (no recovery possible).
755 */
756 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100757ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758{
759 memfile_T *mfp;
760 char_u *fname;
761 char_u *dirp;
762
763 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200764 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
765 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100766 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767
Bram Moolenaara1956f62006-03-12 22:18:00 +0000768#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100769 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000770 if (buf->b_spell)
771 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200772 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000773 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100774 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000775 buf->b_may_swap = FALSE;
776 return;
777 }
778#endif
779
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 /*
781 * Try all directories in 'directory' option.
782 */
783 dirp = p_dir;
784 for (;;)
785 {
786 if (*dirp == NUL)
787 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100788 // There is a small chance that between choosing the swap file name
789 // and creating it, another Vim creates the file. In that case the
790 // creation will fail and we will use another directory.
791 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200792 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100793 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 if (fname == NULL)
795 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100796 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100798#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 /*
800 * set full pathname for swap file now, because a ":!cd dir" may
801 * change directory without us knowing it.
802 */
803 mf_fullname(mfp);
804#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200805 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000806
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100807 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000809 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100810 // Mark all blocks that should be in the swapfile as dirty.
811 // Needed for when the 'swapfile' option was reset, so that
812 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000813 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000815 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100816 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 mf_close_file(buf, FALSE);
818 }
819 }
820
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200821 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 {
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200823 need_wait_return = TRUE; // call wait_return later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100825 (void)semsg(_("E303: Unable to open swap file for \"%s\", recovery impossible"),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200826 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 --no_wait_return;
828 }
829
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100830 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 buf->b_may_swap = FALSE;
832}
833
834/*
835 * If still need to create a swap file, and starting to edit a not-readonly
836 * file, or reading into an existing buffer, create a swap file now.
837 */
838 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100839check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200840 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200842 int old_msg_silent = msg_silent; // might be reset by an E325 message
843
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
845 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200846 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847}
848
849/*
850 * Close memline for buffer 'buf'.
851 * If 'del_file' is TRUE, delete the swap file
852 */
853 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100854ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100856 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100858 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY))
860 vim_free(buf->b_ml.ml_line_ptr);
861 vim_free(buf->b_ml.ml_stack);
862#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100863 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864#endif
865 buf->b_ml.ml_mfp = NULL;
866
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100867 // Reset the "recovered" flag, give the ATTENTION prompt the next time
868 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 buf->b_flags &= ~BF_RECOVERED;
870}
871
872/*
873 * Close all existing memlines and memfiles.
874 * Only used when exiting.
875 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000876 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 */
878 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100879ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880{
881 buf_T *buf;
882
Bram Moolenaar29323592016-07-24 22:04:11 +0200883 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000884 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
885 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100886#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100887 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100888#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100890 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891#endif
892}
893
894/*
895 * Close all memfiles for not modified buffers.
896 * Only use just before exiting!
897 */
898 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100899ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900{
901 buf_T *buf;
902
Bram Moolenaar29323592016-07-24 22:04:11 +0200903 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100905 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906}
907
908/*
909 * Update the timestamp in the .swp file.
910 * Used when the file has been written.
911 */
912 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100913ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200915 ml_upd_block0(buf, UB_FNAME);
916}
917
918/*
919 * Return FAIL when the ID of "b0p" is wrong.
920 */
921 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100922ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200923{
924 if (b0p->b0_id[0] != BLOCK0_ID0
925 || (b0p->b0_id[1] != BLOCK0_ID1
926 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200927 && b0p->b0_id[1] != BLOCK0_ID1_C1
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200928 && b0p->b0_id[1] != BLOCK0_ID1_C2
929 && b0p->b0_id[1] != BLOCK0_ID1_C3)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200930 )
931 return FAIL;
932 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000933}
934
935/*
936 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
937 */
938 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100939ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000940{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 memfile_T *mfp;
942 bhdr_T *hp;
943 ZERO_BL *b0p;
944
945 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200946 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200948 hp = mf_get(mfp, (blocknr_T)0, 1);
949 if (hp == NULL)
950 {
951#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100952 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200953 if (what == UB_CRYPT)
954 ml_set_mfp_crypt(buf);
955#endif
956 return;
957 }
958
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200960 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100961 iemsg(_("E304: ml_upd_block0(): Didn't get block 0??"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000963 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200964 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000965 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200966#ifdef FEAT_CRYPT
967 else if (what == UB_CRYPT)
968 ml_set_b0_crypt(buf, b0p);
969#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100970 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000971 set_b0_dir_flag(b0p, buf);
972 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 mf_put(mfp, hp, TRUE, FALSE);
974}
975
976/*
977 * Write file name and timestamp into block 0 of a swap file.
978 * Also set buf->b_mtime.
979 * Don't use NameBuff[]!!!
980 */
981 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100982set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200984 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
986 if (buf->b_ffname == NULL)
987 b0p->b0_fname[0] = NUL;
988 else
989 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100990#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100991 // Systems that cannot translate "~user" back into a path: copy the
992 // file name unmodified. Do use slashes instead of backslashes for
993 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200994 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000995# ifdef BACKSLASH_IN_FILENAME
996 forward_slash(b0p->b0_fname);
997# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998#else
999 size_t flen, ulen;
1000 char_u uname[B0_UNAME_SIZE];
1001
1002 /*
1003 * For a file under the home directory of the current user, we try to
1004 * replace the home directory path with "~user". This helps when
1005 * editing the same file on different machines over a network.
1006 * First replace home dir path with "~/" with home_replace().
1007 * Then insert the user name to get "~user/".
1008 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001009 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
1010 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011 if (b0p->b0_fname[0] == '~')
1012 {
1013 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001014 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001016 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1017 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1018 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 else
1020 {
1021 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1022 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1023 }
1024 }
1025#endif
1026 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1027 {
1028 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1029#ifdef CHECK_INODE
1030 long_to_char((long)st.st_ino, b0p->b0_ino);
1031#endif
1032 buf_store_time(buf, &st, buf->b_ffname);
1033 buf->b_mtime_read = buf->b_mtime;
1034 }
1035 else
1036 {
1037 long_to_char(0L, b0p->b0_mtime);
1038#ifdef CHECK_INODE
1039 long_to_char(0L, b0p->b0_ino);
1040#endif
1041 buf->b_mtime = 0;
1042 buf->b_mtime_read = 0;
1043 buf->b_orig_size = 0;
1044 buf->b_orig_mode = 0;
1045 }
1046 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001047
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001048 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001049 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050}
1051
1052/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001053 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1054 * swapfile for "buf" are in the same directory.
1055 * This is fail safe: if we are not sure the directories are equal the flag is
1056 * not set.
1057 */
1058 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001059set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001060{
1061 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1062 b0p->b0_flags |= B0_SAME_DIR;
1063 else
1064 b0p->b0_flags &= ~B0_SAME_DIR;
1065}
1066
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001067/*
1068 * When there is room, add the 'fileencoding' to block zero.
1069 */
1070 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001071add_b0_fenc(
1072 ZERO_BL *b0p,
1073 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001074{
1075 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001076 int size = B0_FNAME_SIZE_NOCRYPT;
1077
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001078#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001079 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1080 // With encryption it's OK to move elsewhere, the swap file is not
1081 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001082 if (*buf->b_p_key != NUL)
1083 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001084#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001085
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001086 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001087 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001088 b0p->b0_flags &= ~B0_HAS_FENC;
1089 else
1090 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001091 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001092 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001093 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001094 b0p->b0_flags |= B0_HAS_FENC;
1095 }
1096}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001097
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001098#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1099# include <sys/sysinfo.h>
1100#endif
1101
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001102#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001103/*
1104 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1105 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1106 * the result is FALSE;
1107 */
1108 static int
1109swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1110{
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001111# ifdef HAVE_SYSINFO_UPTIME
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001112 stat_T st;
1113 struct sysinfo sinfo;
1114
1115 // If the system rebooted after when the swap file was written then the
1116 // process can't be running now.
1117 if (mch_stat((char *)swap_fname, &st) != -1
1118 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001119 && st.st_mtime < time(NULL) - (
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001120# ifdef FEAT_EVAL
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001121 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001122# endif
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001123 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001124 return FALSE;
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001125# endif
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001126 return mch_process_running(char_to_long(b0p->b0_pid));
1127}
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001128#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001129
1130/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001131 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001132 * If "checkext" is TRUE, check the extension and detect whether it is
1133 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 */
1135 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001136ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137{
1138 buf_T *buf = NULL;
1139 memfile_T *mfp = NULL;
1140 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001141 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 bhdr_T *hp = NULL;
1143 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001144 int b0_ff;
1145 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001146#ifdef FEAT_CRYPT
1147 int b0_cm = -1;
1148#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 PTR_BL *pp;
1150 DATA_BL *dp;
1151 infoptr_T *ip;
1152 blocknr_T bnum;
1153 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001154 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 int len;
1156 int directly;
1157 linenr_T lnum;
1158 char_u *p;
1159 int i;
1160 long error;
1161 int cannot_open;
1162 linenr_T line_count;
1163 int has_error;
1164 int idx;
1165 int top;
1166 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001167 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 int called_from_main;
1169 int serious_error = TRUE;
1170 long mtime;
1171 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001172 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173
1174 recoverymode = TRUE;
1175 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001176 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001177
1178 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001179 * 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 +00001180 * Otherwise a search is done to find the swap file(s).
1181 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001183 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 fname = (char_u *)"";
1185 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001186 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001187#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001188 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001190 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001192 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001193 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1194 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001195 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 {
1197 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001198 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 }
1200 else
1201 {
1202 directly = FALSE;
1203
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001204 // count the number of matching swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001205 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001206 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001208 semsg(_("E305: No swap file found for %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 goto theend;
1210 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001211 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001213 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001215 // list the names of the swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001216 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001218 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001219 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 if (i < 1 || i > len)
1221 goto theend;
1222 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001223 // get the swap file name that will be used
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001224 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001226 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001227 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001229 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001230 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 getout(1);
1232
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001233 /*
1234 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001235 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001236 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001237 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001241 /*
1242 * init fields in memline struct
1243 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001244 buf->b_ml.ml_stack_size = 0; // no stack yet
1245 buf->b_ml.ml_stack = NULL; // no stack yet
1246 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1247 buf->b_ml.ml_line_lnum = 0; // no cached line
1248 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001250#ifdef FEAT_CRYPT
1251 buf->b_p_key = empty_option;
1252 buf->b_p_cm = empty_option;
1253#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001255 /*
1256 * open the memfile from the old swap file
1257 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001258 p = vim_strsave(fname_used); // save "fname_used" for the message:
1259 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001260 mfp = mf_open(fname_used, O_RDONLY);
1261 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 if (mfp == NULL || mfp->mf_fd < 0)
1263 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001264 if (fname_used != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001265 semsg(_("E306: Cannot open %s"), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 goto theend;
1267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001269#ifdef FEAT_CRYPT
1270 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272
1273 /*
1274 * The page size set in mf_open() might be different from the page size
1275 * used in the swap file, we must get it from block 0. But to read block
1276 * 0 we need a page size. Use the minimal size for block 0 here, it will
1277 * be set to the real value below.
1278 */
1279 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1280
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001281 /*
1282 * try to read block 0
1283 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1285 {
1286 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001287 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001289 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 attr | MSG_HIST);
1291 msg_end();
1292 goto theend;
1293 }
1294 b0p = (ZERO_BL *)(hp->bh_data);
1295 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1296 {
1297 msg_start();
1298 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001299 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001301 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 msg_end();
1303 goto theend;
1304 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001305 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001307 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 goto theend;
1309 }
1310 if (b0_magic_wrong(b0p))
1311 {
1312 msg_start();
1313 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001314#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001316 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 attr | MSG_HIST);
1318 else
1319#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001320 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001322 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001323 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001325 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1326 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 msg_end();
1328 goto theend;
1329 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001330
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001331#ifdef FEAT_CRYPT
K.Takataeeec2542021-06-02 13:28:16 +02001332 for (i = 0; i < (int)ARRAY_LENGTH(id1_codes); ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001333 if (id1_codes[i] == b0p->b0_id[1])
1334 b0_cm = i;
1335 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001336 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001337 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001338#else
1339 if (b0p->b0_id[1] != BLOCK0_ID1)
1340 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001341 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001342 goto theend;
1343 }
1344#endif
1345
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 /*
1347 * If we guessed the wrong page size, we have to recalculate the
1348 * highest block number in the file.
1349 */
1350 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1351 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001352 unsigned previous_page_size = mfp->mf_page_size;
1353
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001355 if (mfp->mf_page_size < previous_page_size)
1356 {
1357 msg_start();
1358 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001359 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001360 attr | MSG_HIST);
1361 msg_end();
1362 goto theend;
1363 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001364 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001365 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 else
1367 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1368 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001369
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001370 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001371 p = alloc(mfp->mf_page_size);
1372 if (p == NULL)
1373 goto theend;
1374 mch_memmove(p, hp->bh_data, previous_page_size);
1375 vim_free(hp->bh_data);
1376 hp->bh_data = p;
1377 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 }
1379
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001380 /*
1381 * If .swp file name given directly, use name from swap file for buffer.
1382 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 if (directly)
1384 {
1385 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1386 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1387 goto theend;
1388 }
1389
1390 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001391 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392
1393 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001394 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 else
1396 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001397 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398 msg_putchar('\n');
1399
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001400 /*
1401 * check date of swap file and original file
1402 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 mtime = char_to_long(b0p->b0_mtime);
1404 if (curbuf->b_ffname != NULL
1405 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1406 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1407 && org_stat.st_mtime > swp_stat.st_mtime)
1408 || org_stat.st_mtime != mtime))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001409 emsg(_("E308: Warning: Original file may have been changed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001411
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001412 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001413 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1414 if (b0p->b0_flags & B0_HAS_FENC)
1415 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001416 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001417
1418#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001419 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001420 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001421 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001422#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001423 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001424 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001425 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001426 }
1427
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001428 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 hp = NULL;
1430
1431 /*
1432 * Now that we are sure that the file is going to be recovered, clear the
1433 * contents of the current buffer.
1434 */
1435 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001436 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437
1438 /*
1439 * Try reading the original file to obtain the values of 'fileformat',
1440 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001441 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 */
1443 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001444 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001447#ifdef FEAT_CRYPT
1448 if (b0_cm >= 0)
1449 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001450 // Need to ask the user for the crypt key. If this fails we continue
1451 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001452 if (*curbuf->b_p_key != NUL)
1453 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001454 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001455 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1456 msg_puts(_("\nenter the new crypt key."));
1457 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1458 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001459 }
1460 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001461 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001462 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001463 if (buf->b_p_key == NULL)
1464 buf->b_p_key = curbuf->b_p_key;
1465 else if (*buf->b_p_key == NUL)
1466 {
1467 vim_free(buf->b_p_key);
1468 buf->b_p_key = curbuf->b_p_key;
1469 }
1470 if (buf->b_p_key == NULL)
1471 buf->b_p_key = empty_option;
1472 }
1473#endif
1474
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001475 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001476 if (b0_ff != 0)
1477 set_fileformat(b0_ff - 1, OPT_LOCAL);
1478 if (b0_fenc != NULL)
1479 {
1480 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1481 vim_free(b0_fenc);
1482 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001483 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001484
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001485 bnum = 1; // start with block 1
1486 page_count = 1; // which is 1 page
1487 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001489 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 error = 0;
1491 buf->b_ml.ml_stack_top = 0;
1492 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001493 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494
1495 if (curbuf->b_ffname == NULL)
1496 cannot_open = TRUE;
1497 else
1498 cannot_open = FALSE;
1499
1500 serious_error = FALSE;
1501 for ( ; !got_int; line_breakcheck())
1502 {
1503 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001504 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505
1506 /*
1507 * get block
1508 */
1509 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
1510 {
1511 if (bnum == 1)
1512 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001513 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 goto theend;
1515 }
1516 ++error;
1517 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1518 (colnr_T)0, TRUE);
1519 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001520 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521 {
1522 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001523 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001525 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 if (idx == 0 && line_count != 0)
1527 {
1528 for (i = 0; i < (int)pp->pb_count; ++i)
1529 line_count -= pp->pb_pointer[i].pe_line_count;
1530 if (line_count != 0)
1531 {
1532 ++error;
1533 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1534 (colnr_T)0, TRUE);
1535 }
1536 }
1537
1538 if (pp->pb_count == 0)
1539 {
1540 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1541 (colnr_T)0, TRUE);
1542 ++error;
1543 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001544 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 {
1546 if (pp->pb_pointer[idx].pe_bnum < 0)
1547 {
1548 /*
1549 * Data block with negative block number.
1550 * Try to read lines from the original file.
1551 * This is slow, but it works.
1552 */
1553 if (!cannot_open)
1554 {
1555 line_count = pp->pb_pointer[idx].pe_line_count;
1556 if (readfile(curbuf->b_ffname, NULL, lnum,
1557 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001558 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 cannot_open = TRUE;
1560 else
1561 lnum += line_count;
1562 }
1563 if (cannot_open)
1564 {
1565 ++error;
1566 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1567 (colnr_T)0, TRUE);
1568 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001569 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 continue;
1571 }
1572
1573 /*
1574 * going one block deeper in the tree
1575 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001576 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 {
1578 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001579 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 }
1581 ip = &(buf->b_ml.ml_stack[top]);
1582 ip->ip_bnum = bnum;
1583 ip->ip_index = idx;
1584
1585 bnum = pp->pb_pointer[idx].pe_bnum;
1586 line_count = pp->pb_pointer[idx].pe_line_count;
1587 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001588 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 continue;
1590 }
1591 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001592 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 {
1594 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001595 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 {
1597 if (bnum == 1)
1598 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001599 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 mfp->mf_fname);
1601 goto theend;
1602 }
1603 ++error;
1604 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1605 (colnr_T)0, TRUE);
1606 }
1607 else
1608 {
1609 /*
1610 * it is a data block
1611 * Append all the lines in this block
1612 */
1613 has_error = FALSE;
1614 /*
1615 * check length of block
1616 * if wrong, use length in pointer block
1617 */
1618 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1619 {
1620 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1621 (colnr_T)0, TRUE);
1622 ++error;
1623 has_error = TRUE;
1624 dp->db_txt_end = page_count * mfp->mf_page_size;
1625 }
1626
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001627 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1629
1630 /*
1631 * check number of lines in block
1632 * if wrong, use count in data block
1633 */
1634 if (line_count != dp->db_line_count)
1635 {
1636 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1637 (colnr_T)0, TRUE);
1638 ++error;
1639 has_error = TRUE;
1640 }
1641
1642 for (i = 0; i < dp->db_line_count; ++i)
1643 {
1644 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001645 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 || txt_start >= (int)dp->db_txt_end)
1647 {
1648 p = (char_u *)"???";
1649 ++error;
1650 }
1651 else
1652 p = (char_u *)dp + txt_start;
1653 ml_append(lnum++, p, (colnr_T)0, TRUE);
1654 }
1655 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001656 ml_append(lnum++, (char_u *)_("???END"),
1657 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 }
1659 }
1660 }
1661
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001662 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 break;
1664
1665 /*
1666 * go one block up in the tree
1667 */
1668 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1669 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001670 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 page_count = 1;
1672 }
1673
1674 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001675 * Compare the buffer contents with the original file. When they differ
1676 * set the 'modified' flag.
1677 * Lines 1 - lnum are the new contents.
1678 * Lines lnum + 1 to ml_line_count are the original contents.
1679 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001681 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1682 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001683 // Recovering an empty file results in two lines and the first line is
1684 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001685 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1686 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001687 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001688 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001689 }
1690 }
1691 else
1692 {
1693 for (idx = 1; idx <= lnum; ++idx)
1694 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001695 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001696 p = vim_strsave(ml_get(idx));
1697 i = STRCMP(p, ml_get(idx + lnum));
1698 vim_free(p);
1699 if (i != 0)
1700 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001701 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001702 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001703 break;
1704 }
1705 }
1706 }
1707
1708 /*
1709 * Delete the lines from the original file and the dummy line from the
1710 * empty buffer. These will now be after the last line in the buffer.
1711 */
1712 while (curbuf->b_ml.ml_line_count > lnum
1713 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001714 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 curbuf->b_flags |= BF_RECOVERED;
Bram Moolenaare3f50ad2021-06-09 12:33:40 +02001716 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717
1718 recoverymode = FALSE;
1719 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001720 emsg(_("E311: Recovery Interrupted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 else if (error)
1722 {
1723 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001724 msg(">>>>>>>>>>>>>");
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001725 emsg(_("E312: Errors detected while recovering; look for lines starting with ???"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001727 msg(_("See \":help E312\" for more information."));
1728 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 }
1730 else
1731 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001732 if (curbuf->b_changed)
1733 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001734 msg(_("Recovery completed. You should check if everything is OK."));
1735 msg_puts(_("\n(You might want to write out this file under another name\n"));
1736 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001737 }
1738 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001739 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001740 msg_puts(_("\nYou may want to delete the .swp file now."));
1741#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001742 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001743 {
1744 // Warn there could be an active Vim on the same file, the user may
1745 // want to kill it.
1746 msg_puts(_("\nNote: process STILL RUNNING: "));
1747 msg_outnum(char_to_long(b0p->b0_pid));
1748 }
1749#endif
1750 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751 cmdline_row = msg_row;
1752 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001753#ifdef FEAT_CRYPT
1754 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1755 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001756 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001757 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1758 }
1759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 redraw_curbuf_later(NOT_VALID);
1761
1762theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001763 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 recoverymode = FALSE;
1765 if (mfp != NULL)
1766 {
1767 if (hp != NULL)
1768 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001769 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001771 if (buf != NULL)
1772 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001773#ifdef FEAT_CRYPT
1774 if (buf->b_p_key != curbuf->b_p_key)
1775 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001776 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001777#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001778 vim_free(buf->b_ml.ml_stack);
1779 vim_free(buf);
1780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 if (serious_error && called_from_main)
1782 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 else
1784 {
1785 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1786 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 return;
1789}
1790
1791/*
1792 * Find the names of swap files in current directory and the directory given
1793 * with the 'directory' option.
1794 *
1795 * Used to:
1796 * - list the swap files for "vim -r"
1797 * - count the number of swap files when recovering
1798 * - list the swap files when recovering
1799 * - find the name of the n'th swap file when recovering
1800 */
1801 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001802recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001803 char_u *fname, // base for swap file name
1804 int list, // when TRUE, list the swap file names
1805 int nr, // when non-zero, return nr'th swap file name
1806 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807{
1808 int num_names;
1809 char_u *(names[6]);
1810 char_u *tail;
1811 char_u *p;
1812 int num_files;
1813 int file_count = 0;
1814 char_u **files;
1815 int i;
1816 char_u *dirp;
1817 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001818 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001819#ifdef HAVE_READLINK
1820 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001821#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001822
Bram Moolenaar64354da2010-05-25 21:37:17 +02001823 if (fname != NULL)
1824 {
1825#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001826 // Expand symlink in the file name, because the swap file is created
1827 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001828 if (resolve_symlink(fname, fname_buf) == OK)
1829 fname_res = fname_buf;
1830 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001831#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001832 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834
1835 if (list)
1836 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001837 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001838 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 msg_putchar('\n');
1840 }
1841
1842 /*
1843 * Do the loop for every directory in 'directory'.
1844 * First allocate some memory to put the directory name in.
1845 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001846 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847 dirp = p_dir;
1848 while (dir_name != NULL && *dirp)
1849 {
1850 /*
1851 * Isolate a directory name from *dirp and put it in dir_name (we know
1852 * it is large enough, so use 31000 for length).
1853 * Advance dirp to next directory name.
1854 */
1855 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1856
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001857 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001859 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 {
1861#ifdef VMS
1862 names[0] = vim_strsave((char_u *)"*_sw%");
1863#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001866#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001867 // For Unix names starting with a dot are special. MS-Windows
1868 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 names[1] = vim_strsave((char_u *)".*.sw?");
1870 names[2] = vim_strsave((char_u *)".sw?");
1871 num_names = 3;
1872#else
1873# ifdef VMS
1874 names[1] = vim_strsave((char_u *)".*_sw%");
1875 num_names = 2;
1876# else
1877 num_names = 1;
1878# endif
1879#endif
1880 }
1881 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001882 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001884 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001886 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 {
1888#ifdef VMS
1889 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1890#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001893#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001894 // For Unix names starting with a dot are special. MS-Windows
1895 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1897 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1898 num_names = 3;
1899#else
1900# ifdef VMS
1901 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1902 num_names = 2;
1903# else
1904 num_names = 1;
1905# endif
1906#endif
1907 }
1908 else
1909 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001910#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001911 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001912
1913 p = dir_name + len;
1914 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001916 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001917 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 }
1919 else
1920#endif
1921 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001922 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 tail = concat_fnames(dir_name, tail, TRUE);
1924 }
1925 if (tail == NULL)
1926 num_names = 0;
1927 else
1928 {
1929 num_names = recov_file_names(names, tail, FALSE);
1930 vim_free(tail);
1931 }
1932 }
1933 }
1934
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001935 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 for (i = 0; i < num_names; ++i)
1937 {
1938 if (names[i] == NULL)
1939 {
1940 for (i = 0; i < num_names; ++i)
1941 vim_free(names[i]);
1942 num_names = 0;
1943 }
1944 }
1945 if (num_names == 0)
1946 num_files = 0;
1947 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001948 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 num_files = 0;
1950
1951 /*
1952 * When no swap file found, wildcard expansion might have failed (e.g.
1953 * not able to execute the shell).
1954 * Try finding a swap file by simply adding ".swp" to the file name.
1955 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001956 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001958 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 char_u *swapname;
1960
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001961 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001962#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001963 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001964#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001965 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001967 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 if (swapname != NULL)
1969 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001970 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001972 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 if (files != NULL)
1974 {
1975 files[0] = swapname;
1976 swapname = NULL;
1977 num_files = 1;
1978 }
1979 }
1980 vim_free(swapname);
1981 }
1982 }
1983
1984 /*
1985 * remove swapfile name of the current buffer, it must be ignored
1986 */
1987 if (curbuf->b_ml.ml_mfp != NULL
1988 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1989 {
1990 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001991 // Do not expand wildcards, on windows would try to expand
1992 // "%tmp%" in "%tmp%file".
1993 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001994 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001995 // Remove the name from files[i]. Move further entries
1996 // down. When the array becomes empty free it here, since
1997 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00001999 if (--num_files == 0)
2000 vim_free(files);
2001 else
2002 for ( ; i < num_files; ++i)
2003 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 }
2005 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002006 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 {
2008 file_count += num_files;
2009 if (nr <= file_count)
2010 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002011 *fname_out = vim_strsave(
2012 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002013 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 }
2015 }
2016 else if (list)
2017 {
2018 if (dir_name[0] == '.' && dir_name[1] == NUL)
2019 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002020 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002021 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002023 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 }
2025 else
2026 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002027 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002029 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 }
2031
2032 if (num_files)
2033 {
2034 for (i = 0; i < num_files; ++i)
2035 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002036 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002038 msg_puts(". ");
2039 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 msg_putchar('\n');
2041 (void)swapfile_info(files[i]);
2042 }
2043 }
2044 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002045 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 out_flush();
2047 }
2048 else
2049 file_count += num_files;
2050
2051 for (i = 0; i < num_names; ++i)
2052 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002053 if (num_files > 0)
2054 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 }
2056 vim_free(dir_name);
2057 return file_count;
2058}
2059
Bram Moolenaar4f974752019-02-17 17:44:42 +01002060#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002062 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 * Append the full path to name with path separators made into percent
2064 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"")
2065 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002066 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002067make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002069 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002071 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 if (f != NULL)
2073 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002074 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (s != NULL)
2076 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002077 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002078 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002079 if (vim_ispathsep(*d))
2080 *d = '%';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 d = concat_fnames(dir, s, TRUE);
2082 vim_free(s);
2083 }
2084 vim_free(f);
2085 }
2086 return d;
2087}
2088#endif
2089
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002090#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2091 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2092# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093static int process_still_running;
2094#endif
2095
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002096#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002098 * Return information found in swapfile "fname" in dictionary "d".
2099 * This is used by the swapinfo() function.
2100 */
2101 void
2102get_b0_dict(char_u *fname, dict_T *d)
2103{
2104 int fd;
2105 struct block0 b0;
2106
2107 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2108 {
2109 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2110 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002111 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002112 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002113 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002114 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002115 else
2116 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002117 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002118 dict_add_string_len(d, "version", b0.b0_version, 10);
2119 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2120 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2121 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002122
2123 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2124 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002125 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2126# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002127 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002128# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002129 }
2130 }
2131 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002132 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002133 close(fd);
2134 }
2135 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002136 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002137}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002138#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002139
2140/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002141 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 * Returns timestamp (0 when unknown).
2143 */
2144 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002145swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002147 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 int fd;
2149 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150#ifdef UNIX
2151 char_u uname[B0_UNAME_SIZE];
2152#endif
2153
Bram Moolenaar63d25552019-05-10 21:28:38 +02002154 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155 if (mch_stat((char *)fname, &st) != -1)
2156 {
2157#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002158 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2160 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002161 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002163 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 }
2165 else
2166#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002167 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002168 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002170 else
2171 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172
2173 /*
2174 * print the original file name
2175 */
2176 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2177 if (fd >= 0)
2178 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002179 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 {
2181 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2182 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002183 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002185 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002187 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 }
2189 else
2190 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002191 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002193 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 else
2195 msg_outtrans(b0.b0_fname);
2196
Bram Moolenaar32526b32019-01-19 17:43:09 +01002197 msg_puts(_("\n modified: "));
2198 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199
2200 if (*(b0.b0_uname) != NUL)
2201 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002202 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 msg_outtrans(b0.b0_uname);
2204 }
2205
2206 if (*(b0.b0_hname) != NUL)
2207 {
2208 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002209 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002211 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 msg_outtrans(b0.b0_hname);
2213 }
2214
2215 if (char_to_long(b0.b0_pid) != 0L)
2216 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002217 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002219#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002220 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002222 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002223# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 process_still_running = TRUE;
2225# endif
2226 }
2227#endif
2228 }
2229
2230 if (b0_magic_wrong(&b0))
2231 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002232#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002234 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 else
2236#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002237 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 }
2239 }
2240 }
2241 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002242 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 close(fd);
2244 }
2245 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002246 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 msg_putchar('\n');
2248
Bram Moolenaar63d25552019-05-10 21:28:38 +02002249 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250}
2251
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002252/*
2253 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2254 * be safely deleted.
2255 */
2256 static time_t
2257swapfile_unchanged(char_u *fname)
2258{
2259 stat_T st;
2260 int fd;
2261 struct block0 b0;
2262 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002263
2264 // must be able to stat the swap file
2265 if (mch_stat((char *)fname, &st) == -1)
2266 return FALSE;
2267
2268 // must be able to read the first block
2269 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2270 if (fd < 0)
2271 return FALSE;
2272 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2273 {
2274 close(fd);
2275 return FALSE;
2276 }
2277
2278 // the ID and magic number must be correct
2279 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2280 ret = FALSE;
2281
2282 // must be unchanged
2283 if (b0.b0_dirty)
2284 ret = FALSE;
2285
2286#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002287 // Host name must be known and must equal the current host name, otherwise
2288 // comparing pid is meaningless.
2289 if (*(b0.b0_hname) == NUL)
2290 {
2291 ret = FALSE;
2292 }
2293 else
2294 {
2295 char_u hostname[B0_HNAME_SIZE];
2296
2297 mch_get_host_name(hostname, B0_HNAME_SIZE);
2298 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002299 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002300 if (STRICMP(b0.b0_hname, hostname) != 0)
2301 ret = FALSE;
2302 }
2303
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002304 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002305 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002306 ret = FALSE;
2307#endif
2308
Bram Moolenaarf8835082020-11-09 21:04:17 +01002309 // We do not check the user, it should be irrelevant for whether the swap
2310 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002311
2312 close(fd);
2313 return ret;
2314}
2315
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002317recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318{
2319 int num_names;
2320
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 /*
2322 * (Win32 and Win64) never short names, but do prepend a dot.
2323 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2324 * Only use the short name if it is different.
2325 */
2326 char_u *p;
2327 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002328# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 int shortname = curbuf->b_shortname;
2330
2331 curbuf->b_shortname = FALSE;
2332# endif
2333
2334 num_names = 0;
2335
2336 /*
2337 * May also add the file name with a dot prepended, for swap file in same
2338 * dir as original file.
2339 */
2340 if (prepend_dot)
2341 {
2342 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2343 if (names[num_names] == NULL)
2344 goto end;
2345 ++num_names;
2346 }
2347
2348 /*
2349 * Form the normal swap file name pattern by appending ".sw?".
2350 */
2351#ifdef VMS
2352 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2353#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355#endif
2356 if (names[num_names] == NULL)
2357 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002358 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 {
2360 p = names[num_names - 1];
2361 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2362 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002363 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364
2365 if (STRCMP(p, names[num_names]) != 0)
2366 ++num_names;
2367 else
2368 vim_free(names[num_names]);
2369 }
2370 else
2371 ++num_names;
2372
Bram Moolenaar4f974752019-02-17 17:44:42 +01002373# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 /*
2375 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2376 */
2377 curbuf->b_shortname = TRUE;
2378#ifdef VMS
2379 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2380#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382#endif
2383 if (names[num_names] == NULL)
2384 goto end;
2385
2386 /*
2387 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2388 */
2389 p = names[num_names];
2390 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2391 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002392 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 if (STRCMP(names[num_names - 1], p) == 0)
2394 vim_free(names[num_names]);
2395 else
2396 ++num_names;
2397# endif
2398
2399end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002400# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 curbuf->b_shortname = shortname;
2402# endif
2403
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 return num_names;
2405}
2406
2407/*
2408 * sync all memlines
2409 *
2410 * If 'check_file' is TRUE, check if original file exists and was not changed.
2411 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2412 * always sync at least one block.
2413 */
2414 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002415ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416{
2417 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002418 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419
Bram Moolenaar29323592016-07-24 22:04:11 +02002420 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002422 if (buf->b_ml.ml_mfp == NULL
2423 || buf->b_ml.ml_mfp->mf_fname == NULL
2424 || buf->b_ml.ml_mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002425 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002427 ml_flush_line(buf); // flush buffered line
2428 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2430 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2431 && buf->b_ffname != NULL)
2432 {
2433 /*
2434 * If the original file does not exist anymore or has been changed
2435 * call ml_preserve() to get rid of all negative numbered blocks.
2436 */
2437 if (mch_stat((char *)buf->b_ffname, &st) == -1
2438 || st.st_mtime != buf->b_mtime_read
Bram Moolenaar914703b2010-05-31 21:59:46 +02002439 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {
2441 ml_preserve(buf, FALSE);
2442 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002443 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 }
2445 }
2446 if (buf->b_ml.ml_mfp->mf_dirty)
2447 {
2448 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2449 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002450 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 break;
2452 }
2453 }
2454}
2455
2456/*
2457 * sync one buffer, including negative blocks
2458 *
2459 * after this all the blocks are in the swap file
2460 *
2461 * Used for the :preserve command and when the original file has been
2462 * changed or deleted.
2463 *
2464 * when message is TRUE the success of preserving is reported
2465 */
2466 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002467ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468{
2469 bhdr_T *hp;
2470 linenr_T lnum;
2471 memfile_T *mfp = buf->b_ml.ml_mfp;
2472 int status;
2473 int got_int_save = got_int;
2474
2475 if (mfp == NULL || mfp->mf_fname == NULL)
2476 {
2477 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002478 emsg(_("E313: Cannot preserve, there is no swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 return;
2480 }
2481
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002482 // We only want to stop when interrupted here, not when interrupted
2483 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 got_int = FALSE;
2485
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002486 ml_flush_line(buf); // flush buffered line
2487 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002488 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2489
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002490 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 buf->b_ml.ml_stack_top = 0;
2492
2493 /*
2494 * Some of the data blocks may have been changed from negative to
2495 * positive block number. In that case the pointer blocks need to be
2496 * updated.
2497 *
2498 * We don't know in which pointer block the references are, so we visit
2499 * all data blocks until there are no more translations to be done (or
2500 * we hit the end of the file, which can only happen in case a write fails,
2501 * e.g. when file system if full).
2502 * ml_find_line() does the work by translating the negative block numbers
2503 * when getting the first line of each data block.
2504 */
2505 if (mf_need_trans(mfp) && !got_int)
2506 {
2507 lnum = 1;
2508 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2509 {
2510 hp = ml_find_line(buf, lnum, ML_FIND);
2511 if (hp == NULL)
2512 {
2513 status = FAIL;
2514 goto theend;
2515 }
2516 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2517 lnum = buf->b_ml.ml_locked_high + 1;
2518 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002519 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2520 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2522 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002523 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 }
2525theend:
2526 got_int |= got_int_save;
2527
2528 if (message)
2529 {
2530 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002531 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002533 emsg(_("E314: Preserve failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 }
2535}
2536
2537/*
2538 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2539 * until the next call!
2540 * line1 = ml_get(1);
2541 * line2 = ml_get(2); // line1 is now invalid!
2542 * Make a copy of the line if necessary.
2543 */
2544/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002545 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 *
2547 * On failure an error message is given and IObuff is returned (to avoid
2548 * having to check for error everywhere).
2549 */
2550 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002551ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552{
2553 return ml_get_buf(curbuf, lnum, FALSE);
2554}
2555
2556/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002557 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 */
2559 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002560ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561{
2562 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2563}
2564
2565/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002566 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 */
2568 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002569ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570{
2571 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2572}
2573
2574/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002575 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 */
2577 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002578ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579{
2580 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2581 curwin->w_cursor.col);
2582}
2583
2584/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002585 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 *
2587 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2588 * changed)
2589 */
2590 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002591ml_get_buf(
2592 buf_T *buf,
2593 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002594 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002596 bhdr_T *hp;
2597 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002598 static int recursive = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002600 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002602 if (recursive == 0)
2603 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002604 // Avoid giving this message for a recursive call, may happen when
2605 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002606 ++recursive;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002607 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002608 --recursive;
2609 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610errorret:
2611 STRCPY(IObuff, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002612 buf->b_ml.ml_line_len = 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 return IObuff;
2614 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002615 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 lnum = 1;
2617
Bram Moolenaaradfde112019-05-25 22:11:45 +02002618 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2619 {
2620 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002622 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002624 /*
2625 * See if it is the same line as requested last time.
2626 * Otherwise may need to flush last used line.
2627 * Don't use the last used line when 'swapfile' is reset, need to load all
2628 * blocks.
2629 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002630 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002632 unsigned start, end;
2633 colnr_T len;
2634 int idx;
2635
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 ml_flush_line(buf);
2637
2638 /*
2639 * Find the data block containing the line.
2640 * This also fills the stack with the blocks from the root to the data
2641 * block and releases any locked block.
2642 */
2643 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2644 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002645 if (recursive == 0)
2646 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002647 // Avoid giving this message for a recursive call, may happen
2648 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002649 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002650 get_trans_bufname(buf);
2651 shorten_dir(NameBuff);
2652 siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2653 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002654 --recursive;
2655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 goto errorret;
2657 }
2658
2659 dp = (DATA_BL *)(hp->bh_data);
2660
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002661 idx = lnum - buf->b_ml.ml_locked_low;
2662 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2663 // The text ends where the previous line starts. The first line ends
2664 // at the end of the block.
2665 if (idx == 0)
2666 end = dp->db_txt_end;
2667 else
2668 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2669 len = end - start;
2670
2671 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2672 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673 buf->b_ml.ml_line_lnum = lnum;
2674 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2675 }
2676 if (will_change)
2677 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2678
2679 return buf->b_ml.ml_line_ptr;
2680}
2681
2682/*
2683 * Check if a line that was just obtained by a call to ml_get
2684 * is in allocated memory.
2685 */
2686 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002687ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688{
2689 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2690}
2691
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002692#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002693/*
2694 * Add text properties that continue from the previous line.
2695 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002696 static void
2697add_text_props_for_append(
2698 buf_T *buf,
2699 linenr_T lnum,
2700 char_u **line,
2701 int *len,
2702 char_u **tofree)
2703{
2704 int round;
2705 int new_prop_count = 0;
2706 int count;
2707 int n;
2708 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002709 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002710 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002711 textprop_T prop;
2712
2713 // Make two rounds:
2714 // 1. calculate the extra space needed
2715 // 2. allocate the space and fill it
2716 for (round = 1; round <= 2; ++round)
2717 {
2718 if (round == 2)
2719 {
2720 if (new_prop_count == 0)
2721 return; // nothing to do
2722 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002723 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002724 if (new_line == NULL)
2725 return;
2726 mch_memmove(new_line, *line, *len);
2727 new_prop_count = 0;
2728 }
2729
2730 // Get the line above to find any props that continue in the next
2731 // line.
2732 count = get_text_props(buf, lnum, &props, FALSE);
2733 for (n = 0; n < count; ++n)
2734 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002735 mch_memmove(&prop, props + n * sizeof(textprop_T),
2736 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002737 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2738 {
2739 if (round == 2)
2740 {
2741 prop.tp_flags |= TP_FLAG_CONT_PREV;
2742 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002743 prop.tp_len = *len; // not exactly the right length
2744 mch_memmove(new_line + *len + new_prop_count
2745 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002746 }
2747 ++new_prop_count;
2748 }
2749 }
2750 }
2751 *line = new_line;
2752 *tofree = new_line;
2753 *len = new_len;
2754}
2755#endif
2756
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002758ml_append_int(
2759 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002760 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002761 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002762 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002763 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002765 char_u *line = line_arg;
2766 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002768 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 int offset;
2770 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002771 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 int page_size;
2773 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002774 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 bhdr_T *hp;
2776 memfile_T *mfp;
2777 DATA_BL *dp;
2778 PTR_BL *pp;
2779 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002780#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002781 char_u *tofree = NULL;
2782#endif
2783 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784
Bram Moolenaar071d4272004-06-13 20:20:40 +00002785 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002786 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787
2788 if (lowest_marked && lowest_marked > lnum)
2789 lowest_marked = lnum + 1;
2790
2791 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002792 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002793
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002794#ifdef FEAT_PROP_POPUP
Bram Moolenaar840f91f2021-05-26 22:32:10 +02002795 if (curbuf->b_has_textprop && lnum > 0
2796 && !(flags & (ML_APPEND_UNDO | ML_APPEND_NOPROP)))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002797 // Add text properties that continue from the previous line.
2798 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2799#endif
2800
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002801 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
2803 mfp = buf->b_ml.ml_mfp;
2804 page_size = mfp->mf_page_size;
2805
2806/*
2807 * find the data block containing the previous line
2808 * This also fills the stack with the blocks from the root to the data block
2809 * This also releases any locked block.
2810 */
2811 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2812 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002813 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002814
2815 buf->b_ml.ml_flags &= ~ML_EMPTY;
2816
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002817 if (lnum == 0) // got line one instead, correct db_idx
2818 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 else
2820 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002821 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002822 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2823
2824 dp = (DATA_BL *)(hp->bh_data);
2825
2826/*
2827 * If
2828 * - there is not enough room in the current block
2829 * - appending to the last line in the block
2830 * - not appending to the last line in the file
2831 * insert in front of the next block.
2832 */
2833 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2834 && lnum < buf->b_ml.ml_line_count)
2835 {
2836 /*
2837 * Now that the line is not going to be inserted in the block that we
2838 * expected, the line count has to be adjusted in the pointer blocks
2839 * by using ml_locked_lineadd.
2840 */
2841 --(buf->b_ml.ml_locked_lineadd);
2842 --(buf->b_ml.ml_locked_high);
2843 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002844 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002846 db_idx = -1; // careful, it is negative!
2847 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2849 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2850
2851 dp = (DATA_BL *)(hp->bh_data);
2852 }
2853
2854 ++buf->b_ml.ml_line_count;
2855
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002856 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002858 /*
2859 * Insert the new line in an existing data block, or in the data block
2860 * allocated above.
2861 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 dp->db_txt_start -= len;
2863 dp->db_free -= space_needed;
2864 ++(dp->db_line_count);
2865
2866 /*
2867 * move the text of the lines that follow to the front
2868 * adjust the indexes of the lines that follow
2869 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002870 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 {
2872 /*
2873 * Offset is the start of the previous line.
2874 * This will become the character just after the new line.
2875 */
2876 if (db_idx < 0)
2877 offset = dp->db_txt_end;
2878 else
2879 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2880 mch_memmove((char *)dp + dp->db_txt_start,
2881 (char *)dp + dp->db_txt_start + len,
2882 (size_t)(offset - (dp->db_txt_start + len)));
2883 for (i = line_count - 1; i > db_idx; --i)
2884 dp->db_index[i + 1] = dp->db_index[i] - len;
2885 dp->db_index[db_idx + 1] = offset - len;
2886 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002887 else
2888 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002889 dp->db_index[db_idx + 1] = dp->db_txt_start;
2890
2891 /*
2892 * copy the text into the block
2893 */
2894 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002895 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 dp->db_index[db_idx + 1] |= DB_MARKED;
2897
2898 /*
2899 * Mark the block dirty.
2900 */
2901 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002902 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2904 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002905 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 long line_count_left, line_count_right;
2908 int page_count_left, page_count_right;
2909 bhdr_T *hp_left;
2910 bhdr_T *hp_right;
2911 bhdr_T *hp_new;
2912 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002913 int data_moved = 0; // init to shut up gcc
2914 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915 DATA_BL *dp_right, *dp_left;
2916 int stack_idx;
2917 int in_left;
2918 int lineadd;
2919 blocknr_T bnum_left, bnum_right;
2920 linenr_T lnum_left, lnum_right;
2921 int pb_idx;
2922 PTR_BL *pp_new;
2923
2924 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002925 * There is not enough room, we have to create a new data block and
2926 * copy some lines into it.
2927 * Then we have to insert an entry in the pointer block.
2928 * If this pointer block also is full, we go up another block, and so
2929 * on, up to the root if necessary.
2930 * The line counts in the pointer blocks have already been adjusted by
2931 * ml_find_line().
2932 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933 * We are going to allocate a new data block. Depending on the
2934 * situation it will be put to the left or right of the existing
2935 * block. If possible we put the new line in the left block and move
2936 * the lines after it to the right block. Otherwise the new line is
2937 * also put in the right block. This method is more efficient when
2938 * inserting a lot of lines at one place.
2939 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002940 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 {
2942 lines_moved = 0;
2943 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002944 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002946 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 {
2948 lines_moved = line_count - db_idx - 1;
2949 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002950 in_left = FALSE; // put new line in right block
2951 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 else
2953 {
2954 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2955 dp->db_txt_start;
2956 total_moved = data_moved + lines_moved * INDEX_SIZE;
2957 if ((int)dp->db_free + total_moved >= space_needed)
2958 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002959 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 space_needed = total_moved;
2961 }
2962 else
2963 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002964 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 space_needed += total_moved;
2966 }
2967 }
2968 }
2969
2970 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002971 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
2972 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002974 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 --(buf->b_ml.ml_locked_lineadd);
2976 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002977 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002979 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 {
2981 hp_left = hp_new;
2982 hp_right = hp;
2983 line_count_left = 0;
2984 line_count_right = line_count;
2985 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002986 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 {
2988 hp_left = hp;
2989 hp_right = hp_new;
2990 line_count_left = line_count;
2991 line_count_right = 0;
2992 }
2993 dp_right = (DATA_BL *)(hp_right->bh_data);
2994 dp_left = (DATA_BL *)(hp_left->bh_data);
2995 bnum_left = hp_left->bh_bnum;
2996 bnum_right = hp_right->bh_bnum;
2997 page_count_left = hp_left->bh_page_count;
2998 page_count_right = hp_right->bh_page_count;
2999
3000 /*
3001 * May move the new line into the right/new block.
3002 */
3003 if (!in_left)
3004 {
3005 dp_right->db_txt_start -= len;
3006 dp_right->db_free -= len + INDEX_SIZE;
3007 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003008 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 dp_right->db_index[0] |= DB_MARKED;
3010
3011 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3012 line, (size_t)len);
3013 ++line_count_right;
3014 }
3015 /*
3016 * may move lines from the left/old block to the right/new one.
3017 */
3018 if (lines_moved)
3019 {
3020 /*
3021 */
3022 dp_right->db_txt_start -= data_moved;
3023 dp_right->db_free -= total_moved;
3024 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3025 (char *)dp_left + dp_left->db_txt_start,
3026 (size_t)data_moved);
3027 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3028 dp_left->db_txt_start += data_moved;
3029 dp_left->db_free += total_moved;
3030
3031 /*
3032 * update indexes in the new block
3033 */
3034 for (to = line_count_right, from = db_idx + 1;
3035 from < line_count_left; ++from, ++to)
3036 dp_right->db_index[to] = dp->db_index[from] + offset;
3037 line_count_right += lines_moved;
3038 line_count_left -= lines_moved;
3039 }
3040
3041 /*
3042 * May move the new line into the left (old or new) block.
3043 */
3044 if (in_left)
3045 {
3046 dp_left->db_txt_start -= len;
3047 dp_left->db_free -= len + INDEX_SIZE;
3048 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003049 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 dp_left->db_index[line_count_left] |= DB_MARKED;
3051 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3052 line, (size_t)len);
3053 ++line_count_left;
3054 }
3055
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003056 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 {
3058 lnum_left = lnum + 1;
3059 lnum_right = 0;
3060 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003061 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003062 {
3063 lnum_left = 0;
3064 if (in_left)
3065 lnum_right = lnum + 2;
3066 else
3067 lnum_right = lnum + 1;
3068 }
3069 dp_left->db_line_count = line_count_left;
3070 dp_right->db_line_count = line_count_right;
3071
3072 /*
3073 * release the two data blocks
3074 * The new one (hp_new) already has a correct blocknumber.
3075 * The old one (hp, in ml_locked) gets a positive blocknumber if
3076 * we changed it and we are not editing a new file.
3077 */
3078 if (lines_moved || in_left)
3079 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003080 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3082 mf_put(mfp, hp_new, TRUE, FALSE);
3083
3084 /*
3085 * flush the old data block
3086 * set ml_locked_lineadd to 0, because the updating of the
3087 * pointer blocks is done below
3088 */
3089 lineadd = buf->b_ml.ml_locked_lineadd;
3090 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003091 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092
3093 /*
3094 * update pointer blocks for the new data block
3095 */
3096 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3097 --stack_idx)
3098 {
3099 ip = &(buf->b_ml.ml_stack[stack_idx]);
3100 pb_idx = ip->ip_index;
3101 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003102 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003103 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 if (pp->pb_id != PTR_ID)
3105 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003106 iemsg(_("E317: pointer block id wrong 3"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003108 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 }
3110 /*
3111 * TODO: If the pointer block is full and we are adding at the end
3112 * try to insert in front of the next block
3113 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003114 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 if (pp->pb_count < pp->pb_count_max)
3116 {
3117 if (pb_idx + 1 < (int)pp->pb_count)
3118 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3119 &pp->pb_pointer[pb_idx + 1],
3120 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3121 ++pp->pb_count;
3122 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3123 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3124 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3125 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3126 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3127 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3128
3129 if (lnum_left != 0)
3130 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3131 if (lnum_right != 0)
3132 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3133
3134 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003135 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136
3137 if (lineadd)
3138 {
3139 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003140 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003142 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3144 lineadd;
3145 ++(buf->b_ml.ml_stack_top);
3146 }
3147
3148 /*
3149 * We are finished, break the loop here.
3150 */
3151 break;
3152 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003153 else // pointer block full
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 {
3155 /*
3156 * split the pointer block
3157 * allocate a new pointer block
3158 * move some of the pointer into the new block
3159 * prepare for updating the parent block
3160 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003161 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 {
3163 hp_new = ml_new_ptr(mfp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003164 if (hp_new == NULL) // TODO: try to fix tree
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003165 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 pp_new = (PTR_BL *)(hp_new->bh_data);
3167
3168 if (hp->bh_bnum != 1)
3169 break;
3170
3171 /*
3172 * if block 1 becomes full the tree is given an extra level
3173 * The pointers from block 1 are moved into the new block.
3174 * block 1 is updated to point to the new block
3175 * then continue to split the new block
3176 */
3177 mch_memmove(pp_new, pp, (size_t)page_size);
3178 pp->pb_count = 1;
3179 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3180 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3181 pp->pb_pointer[0].pe_old_lnum = 1;
3182 pp->pb_pointer[0].pe_page_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003183 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3184 hp = hp_new; // new block is to be split
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 pp = pp_new;
3186 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3187 ip->ip_index = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003188 ++stack_idx; // do block 1 again later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 }
3190 /*
3191 * move the pointers after the current one to the new block
3192 * If there are none, the new entry will be in the new block.
3193 */
3194 total_moved = pp->pb_count - pb_idx - 1;
3195 if (total_moved)
3196 {
3197 mch_memmove(&pp_new->pb_pointer[0],
3198 &pp->pb_pointer[pb_idx + 1],
3199 (size_t)(total_moved) * sizeof(PTR_EN));
3200 pp_new->pb_count = total_moved;
3201 pp->pb_count -= total_moved - 1;
3202 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3203 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3204 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3205 if (lnum_right)
3206 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3207 }
3208 else
3209 {
3210 pp_new->pb_count = 1;
3211 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3212 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3213 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3214 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3215 }
3216 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3217 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3218 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3219 if (lnum_left)
3220 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3221 lnum_left = 0;
3222 lnum_right = 0;
3223
3224 /*
3225 * recompute line counts
3226 */
3227 line_count_right = 0;
3228 for (i = 0; i < (int)pp_new->pb_count; ++i)
3229 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3230 line_count_left = 0;
3231 for (i = 0; i < (int)pp->pb_count; ++i)
3232 line_count_left += pp->pb_pointer[i].pe_line_count;
3233
3234 bnum_left = hp->bh_bnum;
3235 bnum_right = hp_new->bh_bnum;
3236 page_count_left = 1;
3237 page_count_right = 1;
3238 mf_put(mfp, hp, TRUE, FALSE);
3239 mf_put(mfp, hp_new, TRUE, FALSE);
3240 }
3241 }
3242
3243 /*
3244 * Safety check: fallen out of for loop?
3245 */
3246 if (stack_idx < 0)
3247 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003248 iemsg(_("E318: Updated too many blocks?"));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003249 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 }
3251 }
3252
3253#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003254# ifdef FEAT_PROP_POPUP
3255 if (curbuf->b_has_textprop)
3256 // only use the space needed for the text, ignore properties
3257 len = (colnr_T)STRLEN(line) + 1;
3258# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003259 // The line was inserted below 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3261#endif
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003262
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003264 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 {
3266 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003267 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003268 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 (char_u *)"\n", 1);
3270 }
3271#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003272#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003273 if (buf->b_write_to_channel)
3274 channel_write_new_lines(buf);
3275#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003276 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003277
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003278theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003279#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003280 vim_free(tofree);
3281#endif
3282 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283}
3284
3285/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003286 * Flush any pending change and call ml_append_int()
3287 */
3288 static int
3289ml_append_flush(
3290 buf_T *buf,
3291 linenr_T lnum, // append after this line (can be 0)
3292 char_u *line, // text of the new line
3293 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003294 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003295{
3296 if (lnum > buf->b_ml.ml_line_count)
3297 return FAIL; // lnum out of range
3298
3299 if (buf->b_ml.ml_line_lnum != 0)
3300 // This may also invoke ml_append_int().
3301 ml_flush_line(buf);
3302
3303#ifdef FEAT_EVAL
3304 // When inserting above recorded changes: flush the changes before changing
3305 // the text. Then flush the cached line, it may become invalid.
3306 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3307 if (buf->b_ml.ml_line_lnum != 0)
3308 ml_flush_line(buf);
3309#endif
3310
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003311 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003312}
3313
3314/*
3315 * Append a line after lnum (may be 0 to insert a line in front of the file).
3316 * "line" does not need to be allocated, but can't be another line in a
3317 * buffer, unlocking may make it invalid.
3318 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003319 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003320 * will be set for recovery
3321 * Check: The caller of this function should probably also call
3322 * appended_lines().
3323 *
3324 * return FAIL for failure, OK otherwise
3325 */
3326 int
3327ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003328 linenr_T lnum, // append after this line (can be 0)
3329 char_u *line, // text of the new line
3330 colnr_T len, // length of new line, including NUL, or 0
3331 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003332{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003333 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3334}
3335
3336 int
3337ml_append_flags(
3338 linenr_T lnum, // append after this line (can be 0)
3339 char_u *line, // text of the new line
3340 colnr_T len, // length of new line, including NUL, or 0
3341 int flags) // ML_APPEND_ values
3342{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003343 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003344 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3345 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003346 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003347}
3348
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003349
Bram Moolenaar250e3112019-07-15 23:02:14 +02003350#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3351/*
3352 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3353 * a memline.
3354 */
3355 int
3356ml_append_buf(
3357 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003358 linenr_T lnum, // append after this line (can be 0)
3359 char_u *line, // text of the new line
3360 colnr_T len, // length of new line, including NUL, or 0
3361 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003362{
3363 if (buf->b_ml.ml_mfp == NULL)
3364 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003365 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003366}
3367#endif
3368
3369/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003370 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003372 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003374 * If "copy" is FALSE the "line" may be freed to add text properties!
3375 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 *
3377 * Check: The caller of this function should probably also call
3378 * changed_lines(), unless update_screen(NOT_VALID) is used.
3379 *
3380 * return FAIL for failure, OK otherwise
3381 */
3382 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003383ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003385 colnr_T len = -1;
3386
3387 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003388 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003389 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003390}
3391
Bram Moolenaarccae4672019-01-04 15:09:57 +01003392/*
3393 * Replace a line for the current buffer. Like ml_replace() with:
3394 * "len_arg" is the length of the text, excluding NUL.
3395 * If "has_props" is TRUE then "line_arg" includes the text properties and
3396 * "len_arg" includes the NUL of the text.
3397 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003398 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003399ml_replace_len(
3400 linenr_T lnum,
3401 char_u *line_arg,
3402 colnr_T len_arg,
3403 int has_props,
3404 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003405{
3406 char_u *line = line_arg;
3407 colnr_T len = len_arg;
3408
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003409 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 return FAIL;
3411
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003412 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003413 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 return FAIL;
3415
Bram Moolenaarccae4672019-01-04 15:09:57 +01003416 if (!has_props)
3417 ++len; // include the NUL after the text
3418 if (copy)
3419 {
3420 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003421#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003422 if (has_props)
3423 line = vim_memsave(line, len);
3424 else
3425#endif
3426 line = vim_strnsave(line, len - 1);
3427 if (line == NULL)
3428 return FAIL;
3429 }
3430
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003432 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 {
3434 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003435 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003436 }
3437#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003438 if (curbuf->b_ml.ml_line_lnum != lnum)
3439 {
3440 // another line is buffered, flush it
3441 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003442 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003443
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003444#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003445 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003446 // Need to fetch the old line to copy over any text properties.
3447 ml_get_buf(curbuf, lnum, TRUE);
3448#endif
3449 }
3450
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003451#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003452 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003453 {
3454 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3455
3456 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3457 {
3458 char_u *newline;
3459 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3460
3461 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003462 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003463 if (newline != NULL)
3464 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003465 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003466 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3467 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003468 vim_free(line);
3469 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003470 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003471 }
3472 }
3473 }
3474#endif
3475
Bram Moolenaarccae4672019-01-04 15:09:57 +01003476 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3477 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003478
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003480 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 curbuf->b_ml.ml_line_lnum = lnum;
3482 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3483
3484 return OK;
3485}
3486
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003487#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003488/*
3489 * Adjust text properties in line "lnum" for a deleted line.
3490 * When "above" is true this is the line above the deleted line.
3491 * "del_props" are the properties of the deleted line.
3492 */
3493 static void
3494adjust_text_props_for_delete(
3495 buf_T *buf,
3496 linenr_T lnum,
3497 char_u *del_props,
3498 int del_props_len,
3499 int above)
3500{
3501 int did_get_line = FALSE;
3502 int done_del;
3503 int done_this;
3504 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003505 bhdr_T *hp;
3506 DATA_BL *dp;
3507 int idx;
3508 int line_start;
3509 long line_size;
3510 int this_props_len;
3511 char_u *text;
3512 size_t textlen;
3513 int found;
3514
3515 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3516 {
3517 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3518 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3519 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3520 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3521 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3522 {
3523 if (!did_get_line)
3524 {
3525 did_get_line = TRUE;
3526 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3527 return;
3528
3529 dp = (DATA_BL *)(hp->bh_data);
3530 idx = lnum - buf->b_ml.ml_locked_low;
3531 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3532 if (idx == 0) // first line in block, text at the end
3533 line_size = dp->db_txt_end - line_start;
3534 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003535 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3536 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003537 text = (char_u *)dp + line_start;
3538 textlen = STRLEN(text) + 1;
3539 if ((long)textlen >= line_size)
3540 {
3541 if (above)
3542 internal_error("no text property above deleted line");
3543 else
3544 internal_error("no text property below deleted line");
3545 return;
3546 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003547 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003548 }
3549
3550 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003551 for (done_this = 0; done_this < this_props_len;
3552 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003553 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003554 int flag = above ? TP_FLAG_CONT_NEXT
3555 : TP_FLAG_CONT_PREV;
3556 textprop_T prop_this;
3557
3558 mch_memmove(&prop_this, text + textlen + done_del,
3559 sizeof(textprop_T));
3560 if ((prop_this.tp_flags & flag)
3561 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003562 && prop_del.tp_type == prop_this.tp_type)
3563 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003564 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003565 prop_this.tp_flags &= ~flag;
3566 mch_memmove(text + textlen + done_del, &prop_this,
3567 sizeof(textprop_T));
3568 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003569 }
3570 }
3571 if (!found)
3572 {
3573 if (above)
3574 internal_error("text property above deleted line not found");
3575 else
3576 internal_error("text property below deleted line not found");
3577 }
3578
3579 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3580 }
3581 }
3582}
3583#endif
3584
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003586 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003587 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3588 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 *
3590 * return FAIL for failure, OK otherwise
3591 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003593ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594{
3595 bhdr_T *hp;
3596 memfile_T *mfp;
3597 DATA_BL *dp;
3598 PTR_BL *pp;
3599 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003600 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 int idx;
3602 int stack_idx;
3603 int text_start;
3604 int line_start;
3605 long line_size;
3606 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003607 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003608#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003609 char_u *textprop_save = NULL;
3610 int textprop_save_len;
3611#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 if (lowest_marked && lowest_marked > lnum)
3614 lowest_marked--;
3615
3616/*
3617 * If the file becomes empty the last line is replaced by an empty line.
3618 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003619 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003621 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622#ifdef FEAT_NETBEANS_INTG
3623 && !netbeansSuppressNoLines
3624#endif
3625 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003626 set_keep_msg((char_u *)_(no_lines_msg), 0);
3627
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003628 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3630 buf->b_ml.ml_flags |= ML_EMPTY;
3631
3632 return i;
3633 }
3634
3635/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003636 * Find the data block containing the line.
3637 * This also fills the stack with the blocks from the root to the data block.
3638 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 */
3640 mfp = buf->b_ml.ml_mfp;
3641 if (mfp == NULL)
3642 return FAIL;
3643
3644 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3645 return FAIL;
3646
3647 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003648 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 count = (long)(buf->b_ml.ml_locked_high)
3650 - (long)(buf->b_ml.ml_locked_low) + 2;
3651 idx = lnum - buf->b_ml.ml_locked_low;
3652
3653 --buf->b_ml.ml_line_count;
3654
3655 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003656 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003657 line_size = dp->db_txt_end - line_start;
3658 else
3659 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3660
3661#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003662 if (netbeans_active())
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003663 netbeans_removed(buf, lnum, 0, (long)line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003665#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003666 // If there are text properties, make a copy, so that we can update
3667 // properties in preceding and following lines.
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003668 if (buf->b_has_textprop && !(flags & (ML_DEL_UNDO | ML_DEL_NOPROP)))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003669 {
3670 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3671
3672 if ((long)textlen < line_size)
3673 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003674 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003675 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3676 textprop_save_len);
3677 }
3678 }
3679#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680
3681/*
3682 * special case: If there is only one line in the data block it becomes empty.
3683 * Then we have to remove the entry, pointing to this data block, from the
3684 * pointer block. If this pointer block also becomes empty, we go up another
3685 * block, and so on, up to the root if necessary.
3686 * The line counts in the pointer blocks have already been adjusted by
3687 * ml_find_line().
3688 */
3689 if (count == 1)
3690 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003691 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 buf->b_ml.ml_locked = NULL;
3693
Bram Moolenaare60acc12011-05-10 16:41:25 +02003694 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3695 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003697 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 ip = &(buf->b_ml.ml_stack[stack_idx]);
3699 idx = ip->ip_index;
3700 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003701 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003702 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 if (pp->pb_id != PTR_ID)
3704 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003705 iemsg(_("E317: pointer block id wrong 4"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003707 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 }
3709 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003710 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 mf_free(mfp, hp);
3712 else
3713 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003714 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3716 (size_t)(count - idx) * sizeof(PTR_EN));
3717 mf_put(mfp, hp, TRUE, FALSE);
3718
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003719 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3720 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003721 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 {
3723 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3724 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003725 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 }
3727 ++(buf->b_ml.ml_stack_top);
3728
3729 break;
3730 }
3731 }
3732 CHECK(stack_idx < 0, _("deleted block 1?"));
3733 }
3734 else
3735 {
3736 /*
3737 * delete the text by moving the next lines forwards
3738 */
3739 text_start = dp->db_txt_start;
3740 mch_memmove((char *)dp + text_start + line_size,
3741 (char *)dp + text_start, (size_t)(line_start - text_start));
3742
3743 /*
3744 * delete the index by moving the next indexes backwards
3745 * Adjust the indexes for the text movement.
3746 */
3747 for (i = idx; i < count - 1; ++i)
3748 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3749
3750 dp->db_free += line_size + INDEX_SIZE;
3751 dp->db_txt_start += line_size;
3752 --(dp->db_line_count);
3753
3754 /*
3755 * mark the block dirty and make sure it is in the file (for recovery)
3756 */
3757 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3758 }
3759
3760#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003761 ml_updatechunk(buf, lnum, line_size
3762# ifdef FEAT_PROP_POPUP
3763 - textprop_save_len
3764# endif
3765 , ML_CHNK_DELLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003767 ret = OK;
3768
3769theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003770#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003771 if (textprop_save != NULL)
3772 {
3773 // Adjust text properties in the line above and below.
3774 if (lnum > 1)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003775 adjust_text_props_for_delete(buf, lnum - 1, textprop_save,
3776 textprop_save_len, TRUE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003777 if (lnum <= buf->b_ml.ml_line_count)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003778 adjust_text_props_for_delete(buf, lnum, textprop_save,
3779 textprop_save_len, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003780 }
3781 vim_free(textprop_save);
3782#endif
3783 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784}
3785
3786/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003787 * Delete line "lnum" in the current buffer.
3788 * When "message" is TRUE may give a "No lines in buffer" message.
3789 *
3790 * Check: The caller of this function should probably also call
3791 * deleted_lines() after this.
3792 *
3793 * return FAIL for failure, OK otherwise
3794 */
3795 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003796ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003797{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003798 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003799}
3800
3801/*
3802 * Like ml_delete() but using flags (see ml_delete_int()).
3803 */
3804 int
3805ml_delete_flags(linenr_T lnum, int flags)
3806{
3807 ml_flush_line(curbuf);
3808 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3809 return FAIL;
3810
3811#ifdef FEAT_EVAL
3812 // When inserting above recorded changes: flush the changes before changing
3813 // the text.
3814 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3815#endif
3816
3817 return ml_delete_int(curbuf, lnum, flags);
3818}
3819
3820/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003821 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 */
3823 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003824ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003825{
3826 bhdr_T *hp;
3827 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003828 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3830 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003831 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832
3833 if (lowest_marked == 0 || lowest_marked > lnum)
3834 lowest_marked = lnum;
3835
3836 /*
3837 * find the data block containing the line
3838 * This also fills the stack with the blocks from the root to the data block
3839 * This also releases any locked block.
3840 */
3841 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003842 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843
3844 dp = (DATA_BL *)(hp->bh_data);
3845 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3846 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3847}
3848
3849/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003850 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 */
3852 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003853ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854{
3855 bhdr_T *hp;
3856 DATA_BL *dp;
3857 linenr_T lnum;
3858 int i;
3859
3860 if (curbuf->b_ml.ml_mfp == NULL)
3861 return (linenr_T) 0;
3862
3863 /*
3864 * The search starts with lowest_marked line. This is the last line where
3865 * a mark was found, adjusted by inserting/deleting lines.
3866 */
3867 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3868 {
3869 /*
3870 * Find the data block containing the line.
3871 * This also fills the stack with the blocks from the root to the data
3872 * block This also releases any locked block.
3873 */
3874 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003875 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876
3877 dp = (DATA_BL *)(hp->bh_data);
3878
3879 for (i = lnum - curbuf->b_ml.ml_locked_low;
3880 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3881 if ((dp->db_index[i]) & DB_MARKED)
3882 {
3883 (dp->db_index[i]) &= DB_INDEX_MASK;
3884 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3885 lowest_marked = lnum + 1;
3886 return lnum;
3887 }
3888 }
3889
3890 return (linenr_T) 0;
3891}
3892
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893/*
3894 * clear all DB_MARKED flags
3895 */
3896 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003897ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003898{
3899 bhdr_T *hp;
3900 DATA_BL *dp;
3901 linenr_T lnum;
3902 int i;
3903
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003904 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 return;
3906
3907 /*
3908 * The search starts with line lowest_marked.
3909 */
3910 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3911 {
3912 /*
3913 * Find the data block containing the line.
3914 * This also fills the stack with the blocks from the root to the data
3915 * block and releases any locked block.
3916 */
3917 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003918 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919
3920 dp = (DATA_BL *)(hp->bh_data);
3921
3922 for (i = lnum - curbuf->b_ml.ml_locked_low;
3923 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3924 if ((dp->db_index[i]) & DB_MARKED)
3925 {
3926 (dp->db_index[i]) &= DB_INDEX_MASK;
3927 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3928 }
3929 }
3930
3931 lowest_marked = 0;
3932 return;
3933}
3934
3935/*
3936 * flush ml_line if necessary
3937 */
3938 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003939ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
3941 bhdr_T *hp;
3942 DATA_BL *dp;
3943 linenr_T lnum;
3944 char_u *new_line;
3945 char_u *old_line;
3946 colnr_T new_len;
3947 int old_len;
3948 int extra;
3949 int idx;
3950 int start;
3951 int count;
3952 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003953 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954
3955 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003956 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957
3958 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3959 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003960 // This code doesn't work recursively, but Netbeans may call back here
3961 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003962 if (entered)
3963 return;
3964 entered = TRUE;
3965
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 lnum = buf->b_ml.ml_line_lnum;
3967 new_line = buf->b_ml.ml_line_ptr;
3968
3969 hp = ml_find_line(buf, lnum, ML_FIND);
3970 if (hp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003971 siemsg(_("E320: Cannot find line %ld"), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 else
3973 {
3974 dp = (DATA_BL *)(hp->bh_data);
3975 idx = lnum - buf->b_ml.ml_locked_low;
3976 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3977 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003978 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003980 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003982 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003983 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984
3985 /*
3986 * if new line fits in data block, replace directly
3987 */
3988 if ((int)dp->db_free >= extra)
3989 {
Bram Moolenaar92755bb2021-08-15 22:18:04 +02003990#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02003991 int old_prop_len = 0;
3992#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003993 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
3995 if (extra != 0 && idx < count - 1)
3996 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003997 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 mch_memmove((char *)dp + dp->db_txt_start - extra,
3999 (char *)dp + dp->db_txt_start,
4000 (size_t)(start - dp->db_txt_start));
4001
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004002 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 for (i = idx + 1; i < count; ++i)
4004 dp->db_index[i] -= extra;
4005 }
4006 dp->db_index[idx] -= extra;
4007
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004008 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 dp->db_free -= extra;
4010 dp->db_txt_start -= extra;
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004011#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02004012 if (buf->b_has_textprop)
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004013 old_prop_len = old_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004014#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004016 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 mch_memmove(old_line - extra, new_line, (size_t)new_len);
4018 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004019#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004020 // The else case is already covered by the insert and delete
Bram Moolenaar14c75302021-08-15 14:28:40 +02004021 if (buf->b_has_textprop)
4022 {
4023 // Do not count the size of any text properties.
4024 extra += old_prop_len;
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004025 extra -= new_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004026 }
4027 if (extra != 0)
4028 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029#endif
4030 }
4031 else
4032 {
4033 /*
4034 * Cannot do it in one data block: Delete and append.
4035 * Append first, because ml_delete_int() cannot delete the
4036 * last line in a buffer, which causes trouble for a buffer
4037 * that has only one line.
4038 * Don't forget to copy the mark!
4039 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004040 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004041 (void)ml_append_int(buf, lnum, new_line, new_len,
Bram Moolenaar840f91f2021-05-26 22:32:10 +02004042 ((dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0)
4043#ifdef FEAT_PROP_POPUP
4044 | ML_APPEND_NOPROP
4045#endif
4046 );
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02004047 (void)ml_delete_int(buf, lnum, ML_DEL_NOPROP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 }
4049 }
4050 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004051
4052 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 }
4054
4055 buf->b_ml.ml_line_lnum = 0;
4056}
4057
4058/*
4059 * create a new, empty, data block
4060 */
4061 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004062ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063{
4064 bhdr_T *hp;
4065 DATA_BL *dp;
4066
4067 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4068 return NULL;
4069
4070 dp = (DATA_BL *)(hp->bh_data);
4071 dp->db_id = DATA_ID;
4072 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4073 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4074 dp->db_line_count = 0;
4075
4076 return hp;
4077}
4078
4079/*
4080 * create a new, empty, pointer block
4081 */
4082 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004083ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084{
4085 bhdr_T *hp;
4086 PTR_BL *pp;
4087
4088 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4089 return NULL;
4090
4091 pp = (PTR_BL *)(hp->bh_data);
4092 pp->pb_id = PTR_ID;
4093 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004094 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4095 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096
4097 return hp;
4098}
4099
4100/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004101 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 *
4103 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4104 * if ML_FLUSH only flush a locked block
4105 * if ML_FIND just find the line
4106 *
4107 * If the block was found it is locked and put in ml_locked.
4108 * The stack is updated to lead to the locked block. The ip_high field in
4109 * the stack is updated to reflect the last line in the block AFTER the
4110 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004111 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 *
4113 * return: NULL for failure, pointer to block header otherwise
4114 */
4115 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004116ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117{
4118 DATA_BL *dp;
4119 PTR_BL *pp;
4120 infoptr_T *ip;
4121 bhdr_T *hp;
4122 memfile_T *mfp;
4123 linenr_T t;
4124 blocknr_T bnum, bnum2;
4125 int dirty;
4126 linenr_T low, high;
4127 int top;
4128 int page_count;
4129 int idx;
4130
4131 mfp = buf->b_ml.ml_mfp;
4132
4133 /*
4134 * If there is a locked block check if the wanted line is in it.
4135 * If not, flush and release the locked block.
4136 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4137 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004138 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 */
4140 if (buf->b_ml.ml_locked)
4141 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004142 if (ML_SIMPLE(action)
4143 && buf->b_ml.ml_locked_low <= lnum
4144 && buf->b_ml.ml_locked_high >= lnum
4145 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004147 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 if (action == ML_INSERT)
4149 {
4150 ++(buf->b_ml.ml_locked_lineadd);
4151 ++(buf->b_ml.ml_locked_high);
4152 }
4153 else if (action == ML_DELETE)
4154 {
4155 --(buf->b_ml.ml_locked_lineadd);
4156 --(buf->b_ml.ml_locked_high);
4157 }
4158 return (buf->b_ml.ml_locked);
4159 }
4160
4161 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4162 buf->b_ml.ml_flags & ML_LOCKED_POS);
4163 buf->b_ml.ml_locked = NULL;
4164
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004165 /*
4166 * If lines have been added or deleted in the locked block, need to
4167 * update the line count in pointer blocks.
4168 */
4169 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4171 }
4172
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004173 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 return NULL;
4175
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004176 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 page_count = 1;
4178 low = 1;
4179 high = buf->b_ml.ml_line_count;
4180
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004181 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 {
4183 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4184 {
4185 ip = &(buf->b_ml.ml_stack[top]);
4186 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4187 {
4188 bnum = ip->ip_bnum;
4189 low = ip->ip_low;
4190 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004191 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 break;
4193 }
4194 }
4195 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004196 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004198 else // ML_DELETE or ML_INSERT
4199 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200
4201/*
4202 * search downwards in the tree until a data block is found
4203 */
4204 for (;;)
4205 {
4206 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4207 goto error_noblock;
4208
4209 /*
4210 * update high for insert/delete
4211 */
4212 if (action == ML_INSERT)
4213 ++high;
4214 else if (action == ML_DELETE)
4215 --high;
4216
4217 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004218 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 {
4220 buf->b_ml.ml_locked = hp;
4221 buf->b_ml.ml_locked_low = low;
4222 buf->b_ml.ml_locked_high = high;
4223 buf->b_ml.ml_locked_lineadd = 0;
4224 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4225 return hp;
4226 }
4227
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004228 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 if (pp->pb_id != PTR_ID)
4230 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004231 iemsg(_("E317: pointer block id wrong"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 goto error_block;
4233 }
4234
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004235 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 goto error_block;
4237 ip = &(buf->b_ml.ml_stack[top]);
4238 ip->ip_bnum = bnum;
4239 ip->ip_low = low;
4240 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004241 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242
4243 dirty = FALSE;
4244 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4245 {
4246 t = pp->pb_pointer[idx].pe_line_count;
4247 CHECK(t == 0, _("pe_line_count is zero"));
4248 if ((low += t) > lnum)
4249 {
4250 ip->ip_index = idx;
4251 bnum = pp->pb_pointer[idx].pe_bnum;
4252 page_count = pp->pb_pointer[idx].pe_page_count;
4253 high = low - 1;
4254 low -= t;
4255
4256 /*
4257 * a negative block number may have been changed
4258 */
4259 if (bnum < 0)
4260 {
4261 bnum2 = mf_trans_del(mfp, bnum);
4262 if (bnum != bnum2)
4263 {
4264 bnum = bnum2;
4265 pp->pb_pointer[idx].pe_bnum = bnum;
4266 dirty = TRUE;
4267 }
4268 }
4269
4270 break;
4271 }
4272 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004273 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 {
4275 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004276 siemsg(_("E322: line number out of range: %ld past the end"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 lnum - buf->b_ml.ml_line_count);
4278
4279 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004280 siemsg(_("E323: line count wrong in block %ld"), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 goto error_block;
4282 }
4283 if (action == ML_DELETE)
4284 {
4285 pp->pb_pointer[idx].pe_line_count--;
4286 dirty = TRUE;
4287 }
4288 else if (action == ML_INSERT)
4289 {
4290 pp->pb_pointer[idx].pe_line_count++;
4291 dirty = TRUE;
4292 }
4293 mf_put(mfp, hp, dirty, FALSE);
4294 }
4295
4296error_block:
4297 mf_put(mfp, hp, FALSE, FALSE);
4298error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004299 /*
4300 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4301 * the incremented/decremented line counts, because there won't be a line
4302 * inserted/deleted after all.
4303 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 if (action == ML_DELETE)
4305 ml_lineadd(buf, 1);
4306 else if (action == ML_INSERT)
4307 ml_lineadd(buf, -1);
4308 buf->b_ml.ml_stack_top = 0;
4309 return NULL;
4310}
4311
4312/*
4313 * add an entry to the info pointer stack
4314 *
4315 * return -1 for failure, number of the new entry otherwise
4316 */
4317 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004318ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319{
4320 int top;
4321 infoptr_T *newstack;
4322
4323 top = buf->b_ml.ml_stack_top;
4324
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004325 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004326 if (top == buf->b_ml.ml_stack_size)
4327 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004328 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004330 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 if (newstack == NULL)
4332 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004333 if (top > 0)
4334 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004335 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 vim_free(buf->b_ml.ml_stack);
4337 buf->b_ml.ml_stack = newstack;
4338 buf->b_ml.ml_stack_size += STACK_INCR;
4339 }
4340
4341 buf->b_ml.ml_stack_top++;
4342 return top;
4343}
4344
4345/*
4346 * Update the pointer blocks on the stack for inserted/deleted lines.
4347 * The stack itself is also updated.
4348 *
4349 * When a insert/delete line action fails, the line is not inserted/deleted,
4350 * but the pointer blocks have already been updated. That is fixed here by
4351 * walking through the stack.
4352 *
4353 * Count is the number of lines added, negative if lines have been deleted.
4354 */
4355 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004356ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357{
4358 int idx;
4359 infoptr_T *ip;
4360 PTR_BL *pp;
4361 memfile_T *mfp = buf->b_ml.ml_mfp;
4362 bhdr_T *hp;
4363
4364 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4365 {
4366 ip = &(buf->b_ml.ml_stack[idx]);
4367 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4368 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004369 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 if (pp->pb_id != PTR_ID)
4371 {
4372 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004373 iemsg(_("E317: pointer block id wrong 2"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 break;
4375 }
4376 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4377 ip->ip_high += count;
4378 mf_put(mfp, hp, TRUE, FALSE);
4379 }
4380}
4381
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004382#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004383/*
4384 * Resolve a symlink in the last component of a file name.
4385 * Note that f_resolve() does it for every part of the path, we don't do that
4386 * here.
4387 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4388 * Otherwise returns FAIL.
4389 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004390 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004391resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004392{
4393 char_u tmp[MAXPATHL];
4394 int ret;
4395 int depth = 0;
4396
4397 if (fname == NULL)
4398 return FAIL;
4399
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004400 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004401 vim_strncpy(tmp, fname, MAXPATHL - 1);
4402
4403 for (;;)
4404 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004405 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004406 if (++depth == 100)
4407 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004408 semsg(_("E773: Symlink loop for \"%s\""), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004409 return FAIL;
4410 }
4411
4412 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4413 if (ret <= 0)
4414 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004415 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004416 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004417 // Found non-symlink or not existing file, stop here.
4418 // When at the first level use the unmodified name, skip the
4419 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004420 if (depth == 1)
4421 return FAIL;
4422
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004423 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004424 break;
4425 }
4426
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004427 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004428 return FAIL;
4429 }
4430 buf[ret] = NUL;
4431
4432 /*
4433 * Check whether the symlink is relative or absolute.
4434 * If it's relative, build a new path based on the directory
4435 * portion of the filename (if any) and the path the symlink
4436 * points to.
4437 */
4438 if (mch_isFullName(buf))
4439 STRCPY(tmp, buf);
4440 else
4441 {
4442 char_u *tail;
4443
4444 tail = gettail(tmp);
4445 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4446 return FAIL;
4447 STRCPY(tail, buf);
4448 }
4449 }
4450
4451 /*
4452 * Try to resolve the full name of the file so that the swapfile name will
4453 * be consistent even when opening a relative symlink from different
4454 * working directories.
4455 */
4456 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4457}
4458#endif
4459
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004461 * Make swap file name out of the file name and a directory name.
4462 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004464 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004465makeswapname(
4466 char_u *fname,
4467 char_u *ffname UNUSED,
4468 buf_T *buf,
4469 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470{
4471 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004472 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004473#ifdef HAVE_READLINK
4474 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004475
4476 // Expand symlink in the file name, so that we put the swap file with the
4477 // actual file instead of with the symlink.
4478 if (resolve_symlink(fname, fname_buf) == OK)
4479 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004480#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481
Bram Moolenaar4f974752019-02-17 17:44:42 +01004482#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004483 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004484
4485 s = dir_name + len;
4486 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004487 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004489 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 {
4491 r = modname(s, (char_u *)".swp", FALSE);
4492 vim_free(s);
4493 }
4494 return r;
4495 }
4496#endif
4497
4498 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004500 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004502#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 "_swp",
4504#else
4505 ".swp",
4506#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004507 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004508 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004509 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 return NULL;
4511
4512 s = get_file_in_dir(r, dir_name);
4513 vim_free(r);
4514 return s;
4515}
4516
4517/*
4518 * Get file name to use for swap file or backup file.
4519 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4520 * option "dname".
4521 * - If "dname" is ".", return "fname" (swap file in dir of file).
4522 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4523 * relative to dir of file).
4524 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4525 * dir).
4526 *
4527 * The return value is an allocated string and can be NULL.
4528 */
4529 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004530get_file_in_dir(
4531 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004532 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533{
4534 char_u *t;
4535 char_u *tail;
4536 char_u *retval;
4537 int save_char;
4538
4539 tail = gettail(fname);
4540
4541 if (dname[0] == '.' && dname[1] == NUL)
4542 retval = vim_strsave(fname);
4543 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4544 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004545 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 retval = concat_fnames(dname + 2, tail, TRUE);
4547 else
4548 {
4549 save_char = *tail;
4550 *tail = NUL;
4551 t = concat_fnames(fname, dname + 2, TRUE);
4552 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004553 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 retval = NULL;
4555 else
4556 {
4557 retval = concat_fnames(t, tail, TRUE);
4558 vim_free(t);
4559 }
4560 }
4561 }
4562 else
4563 retval = concat_fnames(dname, tail, TRUE);
4564
Bram Moolenaar4f974752019-02-17 17:44:42 +01004565#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004566 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004567 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004568 if (*t == ':')
4569 *t = '%';
4570#endif
4571
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 return retval;
4573}
4574
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004575/*
4576 * Print the ATTENTION message: info about an existing swap file.
4577 */
4578 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004579attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004580 buf_T *buf, // buffer being edited
4581 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004582{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004583 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004584 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004585
4586 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004587 (void)emsg(_("E325: ATTENTION"));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004588 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004589 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004590 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004591 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004592 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004593 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004594 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004595 if (mch_stat((char *)buf->b_fname, &st) == -1)
4596 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004597 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004598 }
4599 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004600 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004601 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004602 msg_puts(get_ctime(st.st_mtime, TRUE));
4603 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004604 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004605 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004606 // Some of these messages are long to allow translation to
4607 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004608 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"));
4609 msg_puts(_("(2) An edit session for this file crashed.\n"));
4610 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004611 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004612 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4613 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004614 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004615 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004616 cmdline_row = msg_row;
4617 --no_wait_return;
4618}
4619
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004620#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004621/*
4622 * Trigger the SwapExists autocommands.
4623 * Returns a value for equivalent to do_dialog() (see below):
4624 * 0: still need to ask for a choice
4625 * 1: open read-only
4626 * 2: edit anyway
4627 * 3: recover
4628 * 4: delete it
4629 * 5: quit
4630 * 6: abort
4631 */
4632 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004633do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004634{
4635 set_vim_var_string(VV_SWAPNAME, fname, -1);
4636 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4637
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004638 // Trigger SwapExists autocommands with <afile> set to the file being
4639 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004640 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004641 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004642 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004643
4644 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4645
4646 switch (*get_vim_var_str(VV_SWAPCHOICE))
4647 {
4648 case 'o': return 1;
4649 case 'e': return 2;
4650 case 'r': return 3;
4651 case 'd': return 4;
4652 case 'q': return 5;
4653 case 'a': return 6;
4654 }
4655
4656 return 0;
4657}
4658#endif
4659
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660/*
4661 * Find out what name to use for the swap file for buffer 'buf'.
4662 *
4663 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004664 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004665 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 *
4667 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004668 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004669 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 */
4671 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004672findswapname(
4673 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004674 char_u **dirp, // pointer to list of directories
4675 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676{
4677 char_u *fname;
4678 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 char_u *dir_name;
4680#ifdef AMIGA
4681 BPTR fh;
4682#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004683 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004684 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004686#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004687# define CREATE_DUMMY_FILE
4688 FILE *dummyfd = NULL;
4689
Bram Moolenaar4f974752019-02-17 17:44:42 +01004690# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004691 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4692 && vim_strchr(gettail(buf_fname), ':'))
4693 {
4694 char_u *t;
4695
4696 buf_fname = vim_strsave(buf_fname);
4697 if (buf_fname == NULL)
4698 buf_fname = buf->b_fname;
4699 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004700 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004701 if (*t == ':')
4702 *t = '%';
4703 }
4704# endif
4705
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004706 /*
4707 * If we start editing a new file, e.g. "test.doc", which resides on an
4708 * MSDOS compatible filesystem, it is possible that the file
4709 * "test.doc.swp" which we create will be exactly the same file. To avoid
4710 * this problem we temporarily create "test.doc". Don't do this when the
4711 * check below for a 8.3 file name is used.
4712 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004713 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4714 && mch_getperm(buf_fname) < 0)
4715 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716#endif
4717
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004718 /*
4719 * Isolate a directory name from *dirp and put it in dir_name.
4720 * First allocate some memory to put the directory name in.
4721 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004722 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004723 if (dir_name == NULL)
4724 *dirp = NULL;
4725 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 (void)copy_option_part(dirp, dir_name, 31000, ",");
4727
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004728 /*
4729 * we try different names until we find one that does not exist yet
4730 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004731 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 fname = NULL;
4733 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004734 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735
4736 for (;;)
4737 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004738 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004740 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004742 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 break;
4744 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004745#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746/*
4747 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4748 * file names. If this is the first try and the swap file name does not fit in
4749 * 8.3, detect if this is the case, set shortname and try again.
4750 */
4751 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4752 && !(buf->b_p_sn || buf->b_shortname))
4753 {
4754 char_u *tail;
4755 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004756 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 int f1, f2;
4758 int created1 = FALSE, created2 = FALSE;
4759 int same = FALSE;
4760
4761 /*
4762 * Check if swapfile name does not fit in 8.3:
4763 * It either contains two dots, is longer than 8 chars, or starts
4764 * with a dot.
4765 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004766 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 if ( vim_strchr(tail, '.') != NULL
4768 || STRLEN(tail) > (size_t)8
4769 || *gettail(fname) == '.')
4770 {
4771 fname2 = alloc(n + 2);
4772 if (fname2 != NULL)
4773 {
4774 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004775 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4776 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4777 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 if (vim_strchr(tail, '.') != NULL)
4779 fname2[n - 1] = 'x';
4780 else if (*gettail(fname) == '.')
4781 {
4782 fname2[n] = 'x';
4783 fname2[n + 1] = NUL;
4784 }
4785 else
4786 fname2[n - 5] += 1;
4787 /*
4788 * may need to create the files to be able to use mch_stat()
4789 */
4790 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4791 if (f1 < 0)
4792 {
4793 f1 = mch_open_rw((char *)fname,
4794 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 created1 = TRUE;
4796 }
4797 if (f1 >= 0)
4798 {
4799 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4800 if (f2 < 0)
4801 {
4802 f2 = mch_open_rw((char *)fname2,
4803 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4804 created2 = TRUE;
4805 }
4806 if (f2 >= 0)
4807 {
4808 /*
4809 * Both files exist now. If mch_stat() returns the
4810 * same device and inode they are the same file.
4811 */
4812 if (mch_fstat(f1, &s1) != -1
4813 && mch_fstat(f2, &s2) != -1
4814 && s1.st_dev == s2.st_dev
4815 && s1.st_ino == s2.st_ino)
4816 same = TRUE;
4817 close(f2);
4818 if (created2)
4819 mch_remove(fname2);
4820 }
4821 close(f1);
4822 if (created1)
4823 mch_remove(fname);
4824 }
4825 vim_free(fname2);
4826 if (same)
4827 {
4828 buf->b_shortname = TRUE;
4829 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004830 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004831 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004832 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 }
4834 }
4835 }
4836 }
4837#endif
4838 /*
4839 * check if the swapfile already exists
4840 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004841 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 {
4843#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004844 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845
4846 /*
4847 * Extra security check: When a swap file is a symbolic link, this
4848 * is most likely a symlink attack.
4849 */
4850 if (mch_lstat((char *)fname, &sb) < 0)
4851#else
4852# ifdef AMIGA
4853 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4854 /*
4855 * on the Amiga mch_getperm() will return -1 when the file exists
4856 * but is being used by another program. This happens if you edit
4857 * a file twice.
4858 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004859 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004860 {
4861 Close(fh);
4862 mch_remove(fname);
4863 break;
4864 }
4865 if (IoErr() != ERROR_OBJECT_IN_USE
4866 && IoErr() != ERROR_OBJECT_EXISTS)
4867# endif
4868#endif
4869 break;
4870 }
4871
4872 /*
4873 * A file name equal to old_fname is OK to use.
4874 */
4875 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4876 break;
4877
4878 /*
4879 * get here when file already exists
4880 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004881 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883 /*
4884 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4885 * and file.doc are the same file. To guess if this problem is
4886 * present try if file.doc.swx exists. If it does, we set
4887 * buf->b_shortname and try file_doc.swp (dots replaced by
4888 * underscores for this file), and try again. If it doesn't we
4889 * assume that "file.doc.swp" already exists.
4890 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004891 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 {
4893 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004894 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004896 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 {
4898 buf->b_shortname = TRUE;
4899 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004900 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004901 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004902 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 }
4904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 /*
4906 * If we get here the ".swp" file really exists.
4907 * Give an error message, unless recovering, no file name, we are
4908 * viewing a help file or when the path of the file is different
4909 * (happens when all .swp files are in one directory).
4910 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004911 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004912 && !buf->b_help
4913 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 {
4915 int fd;
4916 struct block0 b0;
4917 int differ = FALSE;
4918
4919 /*
4920 * Try to read block 0 from the swap file to get the original
4921 * file name (and inode number).
4922 */
4923 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4924 if (fd >= 0)
4925 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004926 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 {
4928 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004929 * If the swapfile has the same directory as the
4930 * buffer don't compare the directory names, they can
4931 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004933 if (b0.b0_flags & B0_SAME_DIR)
4934 {
4935 if (fnamecmp(gettail(buf->b_ffname),
4936 gettail(b0.b0_fname)) != 0
4937 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004938 {
4939#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004940 // Symlinks may point to the same file even
4941 // when the name differs, need to check the
4942 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004943 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4944 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4945 char_to_long(b0.b0_ino)))
4946#endif
4947 differ = TRUE;
4948 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004949 }
4950 else
4951 {
4952 /*
4953 * The name in the swap file may be
4954 * "~user/path/file". Expand it first.
4955 */
4956 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004958 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004959 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004960 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004962 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4963 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967 close(fd);
4968 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004970 // give the ATTENTION message when there is an old swap file
4971 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4973 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4974 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004975 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004976 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977#ifdef CREATE_DUMMY_FILE
4978 int did_use_dummy = FALSE;
4979
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004980 // Avoid getting a warning for the file being created
4981 // outside of Vim, it was created at the start of this
4982 // function. Delete the file now, because Vim might exit
4983 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 if (dummyfd != NULL)
4985 {
4986 fclose(dummyfd);
4987 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004988 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 did_use_dummy = TRUE;
4990 }
4991#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004993#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 process_still_running = FALSE;
4995#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004996 // It's safe to delete the swap file if all these are true:
4997 // - the edited file exists
4998 // - the swap file has no changes and looks OK
4999 if (mch_stat((char *)buf->b_fname, &st) == 0
5000 && swapfile_unchanged(fname))
5001 {
5002 choice = 4;
5003 if (p_verbose > 0)
5004 verb_msg(_("Found a swap file that is not useful, deleting it"));
5005 }
5006
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005007#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005008 /*
5009 * If there is an SwapExists autocommand and we can handle
5010 * the response, trigger it. It may return 0 to ask the
5011 * user anyway.
5012 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005013 if (choice == 0
5014 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01005015 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005016 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005018 if (choice == 0)
5019#endif
5020 {
5021#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02005022 // If we are supposed to start the GUI but it wasn't
5023 // completely started yet, start it now. This makes
5024 // the messages displayed in the Vim window when
5025 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005026 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005027 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005028#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02005029 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005030 attention_message(buf, fname);
5031
Bram Moolenaar798184c2018-10-07 20:48:39 +02005032 // We don't want a 'q' typed at the more-prompt
5033 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005034 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02005035
5036 // If vimrc has "simalt ~x" we don't want it to
5037 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02005038 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040
5041#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005042 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 {
5044 char_u *name;
5045
Bram Moolenaar964b3742019-05-24 18:54:09 +02005046 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005048 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 if (name != NULL)
5050 {
5051 STRCPY(name, _("Swap file \""));
5052 home_replace(NULL, fname, name + STRLEN(name),
5053 1000, TRUE);
5054 STRCAT(name, _("\" already exists!"));
5055 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005056 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 (char_u *)_("VIM - ATTENTION"),
5058 name == NULL
5059 ? (char_u *)_("Swap file already exists!")
5060 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005061# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 process_still_running
5063 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5064# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005065 (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 +00005066
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005067# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005068 if (process_still_running && choice >= 4)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005069 choice++; // Skip missing "Delete it" button
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005070# endif
5071 vim_free(name);
5072
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005073 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005074 msg_scrolled = 0;
5075 redraw_all_later(NOT_VALID);
5076 }
5077#endif
5078
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005079 if (choice > 0)
5080 {
5081 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 {
5083 case 1:
5084 buf->b_p_ro = TRUE;
5085 break;
5086 case 2:
5087 break;
5088 case 3:
5089 swap_exists_action = SEA_RECOVER;
5090 break;
5091 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005092 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 break;
5094 case 5:
5095 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 break;
5097 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005098 swap_exists_action = SEA_QUIT;
5099 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 break;
5101 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005103 // If the file was deleted this fname can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 if (mch_getperm(fname) < 0)
5105 break;
5106 }
5107 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005109 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005110 if (msg_silent == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005111 // call wait_return() later
Bram Moolenaar4770d092006-01-12 23:22:24 +00005112 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 }
5114
5115#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005116 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005118 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119#endif
5120 }
5121 }
5122 }
5123
5124 /*
5125 * Change the ".swp" extension to find another file that can be used.
5126 * First decrement the last char: ".swo", ".swn", etc.
5127 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005128 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005130 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005132 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005134 emsg(_("E326: Too many swap files found"));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005135 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 break;
5137 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005138 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 fname[n - 1] = 'z' + 1;
5140 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005141 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 }
5143
5144 vim_free(dir_name);
5145#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005146 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 {
5148 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005149 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 }
5151#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005152#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005153 if (buf_fname != buf->b_fname)
5154 vim_free(buf_fname);
5155#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 return fname;
5157}
5158
5159 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005160b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161{
5162 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5163 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5164 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5165 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5166}
5167
5168#ifdef CHECK_INODE
5169/*
5170 * Compare current file name with file name from swap file.
5171 * Try to use inode numbers when possible.
5172 * Return non-zero when files are different.
5173 *
5174 * When comparing file names a few things have to be taken into consideration:
5175 * - When working over a network the full path of a file depends on the host.
5176 * We check the inode number if possible. It is not 100% reliable though,
5177 * because the device number cannot be used over a network.
5178 * - When a file does not exist yet (editing a new file) there is no inode
5179 * number.
5180 * - The file name in a swap file may not be valid on the current host. The
5181 * "~user" form is used whenever possible to avoid this.
5182 *
5183 * This is getting complicated, let's make a table:
5184 *
5185 * ino_c ino_s fname_c fname_s differ =
5186 *
5187 * both files exist -> compare inode numbers:
5188 * != 0 != 0 X X ino_c != ino_s
5189 *
5190 * inode number(s) unknown, file names available -> compare file names
5191 * == 0 X OK OK fname_c != fname_s
5192 * X == 0 OK OK fname_c != fname_s
5193 *
5194 * current file doesn't exist, file for swap file exist, file name(s) not
5195 * available -> probably different
5196 * == 0 != 0 FAIL X TRUE
5197 * == 0 != 0 X FAIL TRUE
5198 *
5199 * current file exists, inode for swap unknown, file name(s) not
5200 * available -> probably different
5201 * != 0 == 0 FAIL X TRUE
5202 * != 0 == 0 X FAIL TRUE
5203 *
5204 * current file doesn't exist, inode for swap unknown, one file name not
5205 * available -> probably different
5206 * == 0 == 0 FAIL OK TRUE
5207 * == 0 == 0 OK FAIL TRUE
5208 *
5209 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005210 * available -> compare file names
5211 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 *
5213 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5214 * can't be changed without making the block 0 incompatible with 32 bit
5215 * versions.
5216 */
5217
5218 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005219fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005220 char_u *fname_c, // current file name
5221 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005222 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005224 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005225 ino_t ino_c = 0; // ino of current file
5226 ino_t ino_s; // ino of file from swap file
5227 char_u buf_c[MAXPATHL]; // full path of fname_c
5228 char_u buf_s[MAXPATHL]; // full path of fname_s
5229 int retval_c; // flag: buf_c valid
5230 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231
5232 if (mch_stat((char *)fname_c, &st) == 0)
5233 ino_c = (ino_t)st.st_ino;
5234
5235 /*
5236 * First we try to get the inode from the file name, because the inode in
5237 * the swap file may be outdated. If that fails (e.g. this path is not
5238 * valid on this machine), use the inode from block 0.
5239 */
5240 if (mch_stat((char *)fname_s, &st) == 0)
5241 ino_s = (ino_t)st.st_ino;
5242 else
5243 ino_s = (ino_t)ino_block0;
5244
5245 if (ino_c && ino_s)
5246 return (ino_c != ino_s);
5247
5248 /*
5249 * One of the inode numbers is unknown, try a forced vim_FullName() and
5250 * compare the file names.
5251 */
5252 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5253 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5254 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005255 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256
5257 /*
5258 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005259 * unless both appear not to exist at all, then compare with the file name
5260 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 */
5262 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005263 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 return TRUE;
5265}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005266#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005267
5268/*
5269 * Move a long integer into a four byte character array.
5270 * Used for machine independency in block zero.
5271 */
5272 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005273long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274{
5275 s[0] = (char_u)(n & 0xff);
5276 n = (unsigned)n >> 8;
5277 s[1] = (char_u)(n & 0xff);
5278 n = (unsigned)n >> 8;
5279 s[2] = (char_u)(n & 0xff);
5280 n = (unsigned)n >> 8;
5281 s[3] = (char_u)(n & 0xff);
5282}
5283
5284 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005285char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286{
5287 long retval;
5288
5289 retval = s[3];
5290 retval <<= 8;
5291 retval |= s[2];
5292 retval <<= 8;
5293 retval |= s[1];
5294 retval <<= 8;
5295 retval |= s[0];
5296
5297 return retval;
5298}
5299
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005300/*
5301 * Set the flags in the first block of the swap file:
5302 * - file is modified or not: buf->b_changed
5303 * - 'fileformat'
5304 * - 'fileencoding'
5305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005307ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005308{
5309 bhdr_T *hp;
5310 ZERO_BL *b0p;
5311
5312 if (!buf->b_ml.ml_mfp)
5313 return;
5314 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5315 {
5316 if (hp->bh_bnum == 0)
5317 {
5318 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005319 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5320 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5321 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005322 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 hp->bh_flags |= BH_DIRTY;
5324 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5325 break;
5326 }
5327 }
5328}
5329
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005330#if defined(FEAT_CRYPT) || defined(PROTO)
5331/*
5332 * If "data" points to a data block encrypt the text in it and return a copy
5333 * in allocated memory. Return NULL when out of memory.
5334 * Otherwise return "data".
5335 */
5336 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005337ml_encrypt_data(
5338 memfile_T *mfp,
5339 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005340 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005341 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005342{
5343 DATA_BL *dp = (DATA_BL *)data;
5344 char_u *head_end;
5345 char_u *text_start;
5346 char_u *new_data;
5347 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005348 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005349
5350 if (dp->db_id != DATA_ID)
5351 return data;
5352
Bram Moolenaarbc563362015-06-09 18:35:25 +02005353 state = ml_crypt_prepare(mfp, offset, FALSE);
5354 if (state == NULL)
5355 return data;
5356
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005357 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005358 if (new_data == NULL)
5359 return NULL;
5360 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5361 text_start = (char_u *)dp + dp->db_txt_start;
5362 text_len = size - dp->db_txt_start;
5363
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005364 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005365 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5366
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005367 // Encrypt the text.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005368 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start,
5369 FALSE);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005370 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005371
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005372 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005373 if (head_end < text_start)
5374 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5375
5376 return new_data;
5377}
5378
5379/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005380 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005381 */
5382 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005383ml_decrypt_data(
5384 memfile_T *mfp,
5385 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005386 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005387 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005388{
5389 DATA_BL *dp = (DATA_BL *)data;
5390 char_u *head_end;
5391 char_u *text_start;
5392 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005393 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005394
5395 if (dp->db_id == DATA_ID)
5396 {
5397 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5398 text_start = (char_u *)dp + dp->db_txt_start;
5399 text_len = dp->db_txt_end - dp->db_txt_start;
5400
5401 if (head_end > text_start || dp->db_txt_start > size
5402 || dp->db_txt_end > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005403 return; // data was messed up
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005404
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005405 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005406 if (state != NULL)
5407 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005408 // Decrypt the text in place.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005409 crypt_decode_inplace(state, text_start, text_len, FALSE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005410 crypt_free_state(state);
5411 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005412 }
5413}
5414
5415/*
5416 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005417 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005418 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005419 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005420ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005421{
5422 buf_T *buf = mfp->mf_buffer;
5423 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005424 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005425 char_u *key;
5426 char_u *seed;
5427
5428 if (reading && mfp->mf_old_key != NULL)
5429 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005430 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005431 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005432 key = mfp->mf_old_key;
5433 seed = mfp->mf_old_seed;
5434 }
5435 else
5436 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005437 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005438 key = buf->b_p_key;
5439 seed = mfp->mf_seed;
5440 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005441 if (*key == NUL)
5442 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005443
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005444 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005445 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005446 // For PKzip: Append the offset to the key, so that we use a different
5447 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005448 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005449 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005450 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005451
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005452 // Using blowfish or better: add salt and seed. We use the byte offset
5453 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005454 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5455 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005456 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005457}
5458
5459#endif
5460
5461
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462#if defined(FEAT_BYTEOFF) || defined(PROTO)
5463
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005464#define MLCS_MAXL 800 // max no of lines in chunk
5465#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466
5467/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005468 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5470 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5471 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5472 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5473 */
5474 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005475ml_updatechunk(
5476 buf_T *buf,
5477 linenr_T line,
5478 long len,
5479 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480{
5481 static buf_T *ml_upd_lastbuf = NULL;
5482 static linenr_T ml_upd_lastline;
5483 static linenr_T ml_upd_lastcurline;
5484 static int ml_upd_lastcurix;
5485
5486 linenr_T curline = ml_upd_lastcurline;
5487 int curix = ml_upd_lastcurix;
5488 long size;
5489 chunksize_T *curchnk;
5490 int rest;
5491 bhdr_T *hp;
5492 DATA_BL *dp;
5493
5494 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5495 return;
5496 if (buf->b_ml.ml_chunksize == NULL)
5497 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005498 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (buf->b_ml.ml_chunksize == NULL)
5500 {
5501 buf->b_ml.ml_usedchunks = -1;
5502 return;
5503 }
5504 buf->b_ml.ml_numchunks = 100;
5505 buf->b_ml.ml_usedchunks = 1;
5506 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5507 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5508 }
5509
5510 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5511 {
5512 /*
5513 * First line in empty buffer from ml_flush_line() -- reset
5514 */
5515 buf->b_ml.ml_usedchunks = 1;
5516 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005517 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 return;
5519 }
5520
5521 /*
5522 * Find chunk that our line belongs to, curline will be at start of the
5523 * chunk.
5524 */
5525 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5526 || updtype != ML_CHNK_ADDLINE)
5527 {
5528 for (curline = 1, curix = 0;
5529 curix < buf->b_ml.ml_usedchunks - 1
5530 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5531 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005534 else if (curix < buf->b_ml.ml_usedchunks - 1
5535 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005537 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5539 curix++;
5540 }
5541 curchnk = buf->b_ml.ml_chunksize + curix;
5542
5543 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005544 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 curchnk->mlcs_totalsize += len;
5546 if (updtype == ML_CHNK_ADDLINE)
5547 {
5548 curchnk->mlcs_numlines++;
5549
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005550 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5552 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005553 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5554
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005556 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5558 if (buf->b_ml.ml_chunksize == NULL)
5559 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005560 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005561 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 buf->b_ml.ml_usedchunks = -1;
5563 return;
5564 }
5565 }
5566
5567 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5568 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005569 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005571 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 int text_end;
5573 int linecnt;
5574
5575 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5576 buf->b_ml.ml_chunksize + curix,
5577 (buf->b_ml.ml_usedchunks - curix) *
5578 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005579 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580 size = 0;
5581 linecnt = 0;
5582 while (curline < buf->b_ml.ml_line_count
5583 && linecnt < MLCS_MINL)
5584 {
5585 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5586 {
5587 buf->b_ml.ml_usedchunks = -1;
5588 return;
5589 }
5590 dp = (DATA_BL *)(hp->bh_data);
5591 count = (long)(buf->b_ml.ml_locked_high) -
5592 (long)(buf->b_ml.ml_locked_low) + 1;
5593 idx = curline - buf->b_ml.ml_locked_low;
5594 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005595
5596 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 rest = count - idx;
5598 if (linecnt + rest > MLCS_MINL)
5599 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005600 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 linecnt = MLCS_MINL;
5602 }
5603 else
5604 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005605 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 linecnt += rest;
5607 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005608#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005609 if (buf->b_has_textprop)
5610 {
5611 int i;
5612
5613 // We cannot use the text pointers to get the text length,
5614 // the text prop info would also be counted. Go over the
5615 // lines.
5616 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005617 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005618 }
5619 else
5620#endif
5621 {
Bram Moolenaar14c75302021-08-15 14:28:40 +02005622 if (idx == 0) // first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005623 text_end = dp->db_txt_end;
5624 else
5625 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5626 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5627 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 }
5629 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5630 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5631 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5632 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5633 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005634 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 return;
5636 }
5637 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5638 && curix == buf->b_ml.ml_usedchunks - 1
5639 && buf->b_ml.ml_line_count - line <= 1)
5640 {
5641 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005642 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 * after this. Do it now to avoid the loop above later on
5644 */
5645 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5646 buf->b_ml.ml_usedchunks++;
5647 if (line == buf->b_ml.ml_line_count)
5648 {
5649 curchnk->mlcs_numlines = 0;
5650 curchnk->mlcs_totalsize = 0;
5651 }
5652 else
5653 {
5654 /*
5655 * Line is just prior to last, move count for last
5656 * This is the common case when loading a new file
5657 */
5658 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5659 if (hp == NULL)
5660 {
5661 buf->b_ml.ml_usedchunks = -1;
5662 return;
5663 }
5664 dp = (DATA_BL *)(hp->bh_data);
5665 if (dp->db_line_count == 1)
5666 rest = dp->db_txt_end - dp->db_txt_start;
5667 else
5668 rest =
5669 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5670 - dp->db_txt_start;
5671 curchnk->mlcs_totalsize = rest;
5672 curchnk->mlcs_numlines = 1;
5673 curchnk[-1].mlcs_totalsize -= rest;
5674 curchnk[-1].mlcs_numlines -= 1;
5675 }
5676 }
5677 }
5678 else if (updtype == ML_CHNK_DELLINE)
5679 {
5680 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005681 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 if (curix < (buf->b_ml.ml_usedchunks - 1)
5683 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5684 <= MLCS_MINL)
5685 {
5686 curix++;
5687 curchnk = buf->b_ml.ml_chunksize + curix;
5688 }
5689 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5690 {
5691 buf->b_ml.ml_usedchunks--;
5692 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5693 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5694 return;
5695 }
5696 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5697 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5698 > MLCS_MINL))
5699 {
5700 return;
5701 }
5702
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005703 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5705 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5706 buf->b_ml.ml_usedchunks--;
5707 if (curix < buf->b_ml.ml_usedchunks)
5708 {
5709 mch_memmove(buf->b_ml.ml_chunksize + curix,
5710 buf->b_ml.ml_chunksize + curix + 1,
5711 (buf->b_ml.ml_usedchunks - curix) *
5712 sizeof(chunksize_T));
5713 }
5714 return;
5715 }
5716 ml_upd_lastbuf = buf;
5717 ml_upd_lastline = line;
5718 ml_upd_lastcurline = curline;
5719 ml_upd_lastcurix = curix;
5720}
5721
5722/*
5723 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005724 * Find line with offset if "lnum" is 0; return remaining offset in offp
5725 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 * return -1 if information is not available
5727 */
5728 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005729ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730{
5731 linenr_T curline;
5732 int curix;
5733 long size;
5734 bhdr_T *hp;
5735 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005736 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 int idx;
5738 int start_idx;
5739 int text_end;
5740 long offset;
5741 int len;
5742 int ffdos = (get_fileformat(buf) == EOL_DOS);
5743 int extra = 0;
5744
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005745 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005746 ml_flush_line(curbuf);
5747
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 if (buf->b_ml.ml_usedchunks == -1
5749 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005750 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 return -1;
5752
5753 if (offp == NULL)
5754 offset = 0;
5755 else
5756 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005757 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005758 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 /*
5760 * Find the last chunk before the one containing our line. Last chunk is
Bram Moolenaar14c75302021-08-15 14:28:40 +02005761 * special because it will never qualify.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 */
5763 curline = 1;
5764 curix = size = 0;
5765 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005766 && ((lnum != 0
5767 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 || (offset != 0
5769 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
5770 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
5771 {
5772 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5773 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5774 if (offset && ffdos)
5775 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5776 curix++;
5777 }
5778
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005779 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005781#ifdef FEAT_PROP_POPUP
5782 size_t textprop_total = 0;
5783#endif
5784
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 if (curline > buf->b_ml.ml_line_count
5786 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5787 return -1;
5788 dp = (DATA_BL *)(hp->bh_data);
5789 count = (long)(buf->b_ml.ml_locked_high) -
5790 (long)(buf->b_ml.ml_locked_low) + 1;
5791 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005792 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 text_end = dp->db_txt_end;
5794 else
5795 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005796 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005797 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005799 if (curline + (count - idx) >= lnum)
5800 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 else
5802 idx = count - 1;
5803 }
5804 else
5805 {
5806 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005807 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005809#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005810 size_t textprop_size = 0;
5811
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005812 if (buf->b_has_textprop)
5813 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005814 char_u *l1, *l2;
5815
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005816 // compensate for the extra bytes taken by textprops
5817 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5818 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5819 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5820 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5821 }
5822#endif
5823 if (!(offset >= size
5824 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5825#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005826 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005827#endif
5828 + ffdos))
5829 break;
5830
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 if (ffdos)
5832 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005833#ifdef FEAT_PROP_POPUP
5834 textprop_total += textprop_size;
5835#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 if (idx == count - 1)
5837 {
5838 extra = 1;
5839 break;
5840 }
5841 idx++;
5842 }
5843 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005844#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005845 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005846 {
5847 int i;
5848
5849 // cannot use the db_index pointer, need to get the actual text
5850 // lengths.
5851 len = 0;
5852 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005853 {
5854 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5855 len += (int)STRLEN(p) + 1;
5856 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005857 }
5858 else
5859#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005860 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
5861#ifdef FEAT_PROP_POPUP
5862 - (long)textprop_total
5863#endif
5864 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 size += len;
5866 if (offset != 0 && size >= offset)
5867 {
5868 if (size + ffdos == offset)
5869 *offp = 0;
5870 else if (idx == start_idx)
5871 *offp = offset - size + len;
5872 else
5873 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005874 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
5875#ifdef FEAT_PROP_POPUP
5876 + (long)textprop_total
5877#endif
5878 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 curline += idx - start_idx + extra;
5880 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005881 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 return curline;
5883 }
5884 curline = buf->b_ml.ml_locked_high + 1;
5885 }
5886
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005887 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005888 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005889 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005890 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005891 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005892
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005893 // Don't count the last line break if 'noeol' and ('bin' or
5894 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005895 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005896 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005897 size -= ffdos + 1;
5898 }
5899
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 return size;
5901}
5902
5903/*
5904 * Goto byte in buffer with offset 'cnt'.
5905 */
5906 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005907goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908{
5909 long boff = cnt;
5910 linenr_T lnum;
5911
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005912 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 setpcmark();
5914 if (boff)
5915 --boff;
5916 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005917 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 {
5919 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5920 curwin->w_curswant = MAXCOL;
5921 coladvance((colnr_T)MAXCOL);
5922 }
5923 else
5924 {
5925 curwin->w_cursor.lnum = lnum;
5926 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005927 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 curwin->w_set_curswant = TRUE;
5929 }
5930 check_cursor();
5931
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005932 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (has_mbyte)
5934 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935}
5936#endif