blob: 19b87d7ee9451ccfa668e4a64d09b587c5bef9c7 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010010// for debugging
11// #define CHECK(c, s) do { if (c) emsg((s)); } while (0)
Bram Moolenaar6f470022018-04-10 18:47:20 +020012#define CHECK(c, s) do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
14/*
15 * memline.c: Contains the functions for appending, deleting and changing the
Bram Moolenaar4770d092006-01-12 23:22:24 +000016 * text lines. The memfile functions are used to store the information in
17 * blocks of memory, backed up by a file. The structure of the information is
18 * a tree. The root of the tree is a pointer block. The leaves of the tree
19 * are data blocks. In between may be several layers of pointer blocks,
20 * forming branches.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 *
22 * Three types of blocks are used:
23 * - Block nr 0 contains information for recovery
24 * - Pointer blocks contain list of pointers to other blocks.
25 * - Data blocks contain the actual text.
26 *
27 * Block nr 0 contains the block0 structure (see below).
28 *
29 * Block nr 1 is the first pointer block. It is the root of the tree.
30 * Other pointer blocks are branches.
31 *
32 * If a line is too big to fit in a single page, the block containing that
33 * line is made big enough to hold the line. It may span several pages.
34 * Otherwise all blocks are one page.
35 *
36 * A data block that was filled when starting to edit a file and was not
37 * changed since then, can have a negative block number. This means that it
38 * has not yet been assigned a place in the file. When recovering, the lines
39 * in this data block can be read from the original file. When the block is
40 * changed (lines appended/deleted/changed) or when it is flushed it gets a
41 * positive number. Use mf_trans_del() to get the new number, before calling
42 * mf_get().
43 */
44
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#include "vim.h"
46
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010047#ifndef UNIX // it's in os_unix.h for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000048# include <time.h>
49#endif
50
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000051#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010052# include <proto/dos.h> // for Open() and Close()
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010055typedef struct block0 ZERO_BL; // contents of the first block
56typedef struct pointer_block PTR_BL; // contents of a pointer block
57typedef struct data_block DATA_BL; // contents of a data block
58typedef struct pointer_entry PTR_EN; // block/line-count pair
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060#define DATA_ID (('d' << 8) + 'a') // data block id
61#define PTR_ID (('p' << 8) + 't') // pointer block id
62#define BLOCK0_ID0 'b' // block 0 id 0
63#define BLOCK0_ID1 '0' // block 0 id 1
64#define BLOCK0_ID1_C0 'c' // block 0 id 1 'cm' 0
65#define BLOCK0_ID1_C1 'C' // block 0 id 1 'cm' 1
66#define BLOCK0_ID1_C2 'd' // block 0 id 1 'cm' 2
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020067
68#if defined(FEAT_CRYPT)
69static int id1_codes[] = {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010070 BLOCK0_ID1_C0, // CRYPT_M_ZIP
71 BLOCK0_ID1_C1, // CRYPT_M_BF
72 BLOCK0_ID1_C2, // CRYPT_M_BF2
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020073};
74#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
76/*
77 * pointer to a block, used in a pointer block
78 */
79struct pointer_entry
80{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010081 blocknr_T pe_bnum; // block number
82 linenr_T pe_line_count; // number of lines in this branch
83 linenr_T pe_old_lnum; // lnum for this block (for recovery)
84 int pe_page_count; // number of pages in block pe_bnum
Bram Moolenaar071d4272004-06-13 20:20:40 +000085};
86
87/*
88 * A pointer block contains a list of branches in the tree.
89 */
90struct pointer_block
91{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010092 short_u pb_id; // ID for pointer block: PTR_ID
93 short_u pb_count; // number of pointers in this block
94 short_u pb_count_max; // maximum value for pb_count
95 PTR_EN pb_pointer[1]; // list of pointers to blocks (actually longer)
96 // followed by empty space until end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +000097};
98
99/*
100 * A data block is a leaf in the tree.
101 *
102 * The text of the lines is at the end of the block. The text of the first line
103 * in the block is put at the end, the text of the second line in front of it,
104 * etc. Thus the order of the lines is the opposite of the line number.
105 */
106struct data_block
107{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100108 short_u db_id; // ID for data block: DATA_ID
109 unsigned db_free; // free space available
110 unsigned db_txt_start; // byte where text starts
111 unsigned db_txt_end; // byte just after data block
112 linenr_T db_line_count; // number of lines in this block
113 unsigned db_index[1]; // index for start of line (actually bigger)
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100114 // followed by empty space up to db_txt_start
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100115 // followed by the text in the lines until
116 // end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117};
118
119/*
120 * The low bits of db_index hold the actual index. The topmost bit is
121 * used for the global command to be able to mark a line.
122 * This method is not clean, but otherwise there would be at least one extra
123 * byte used for each line.
124 * The mark has to be in this place to keep it with the correct line when other
125 * lines are inserted or deleted.
126 */
127#define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1))
128#define DB_INDEX_MASK (~DB_MARKED)
129
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100130#define INDEX_SIZE (sizeof(unsigned)) // size of one db_index entry
131#define HEADER_SIZE (sizeof(DATA_BL) - INDEX_SIZE) // size of data block header
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100133#define B0_FNAME_SIZE_ORG 900 // what it was in older versions
134#define B0_FNAME_SIZE_NOCRYPT 898 // 2 bytes used for other things
135#define B0_FNAME_SIZE_CRYPT 890 // 10 bytes used for other things
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000136#define B0_UNAME_SIZE 40
137#define B0_HNAME_SIZE 40
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138/*
139 * Restrict the numbers to 32 bits, otherwise most compilers will complain.
140 * This won't detect a 64 bit machine that only swaps a byte in the top 32
141 * bits, but that is crazy anyway.
142 */
143#define B0_MAGIC_LONG 0x30313233L
144#define B0_MAGIC_INT 0x20212223L
145#define B0_MAGIC_SHORT 0x10111213L
146#define B0_MAGIC_CHAR 0x55
147
148/*
149 * Block zero holds all info about the swap file.
150 *
151 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing
152 * swap files unusable!
153 *
154 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
155 *
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000156 * This block is built up of single bytes, to make it portable across
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 * different machines. b0_magic_* is used to check the byte order and size of
158 * variables, because the rest of the swap file is not portable.
159 */
160struct block0
161{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100162 char_u b0_id[2]; // id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
163 // BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc.
164 char_u b0_version[10]; // Vim version string
165 char_u b0_page_size[4];// number of bytes per page
166 char_u b0_mtime[4]; // last modification time of file
167 char_u b0_ino[4]; // inode of b0_fname
168 char_u b0_pid[4]; // process id of creator (or 0)
169 char_u b0_uname[B0_UNAME_SIZE]; // name of user (uid if no name)
170 char_u b0_hname[B0_HNAME_SIZE]; // host name (if it has a name)
171 char_u b0_fname[B0_FNAME_SIZE_ORG]; // name of file being edited
172 long b0_magic_long; // check for byte order of long
173 int b0_magic_int; // check for byte order of int
174 short b0_magic_short; // check for byte order of short
175 char_u b0_magic_char; // check for last char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176};
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000177
178/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000179 * Note: b0_dirty and b0_flags are put at the end of the file name. For very
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000180 * long file names in older versions of Vim they are invalid.
181 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only
182 * when there is room, for very long file names it's omitted.
183 */
184#define B0_DIRTY 0x55
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200185#define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000186
187/*
188 * The b0_flags field is new in Vim 7.0.
189 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200190#define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2]
191
192/*
193 * Crypt seed goes here, 8 bytes. New in Vim 7.3.
194 * Without encryption these bytes may be used for 'fenc'.
195 */
196#define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000197
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100198// The lowest two bits contain the fileformat. Zero means it's not set
199// (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or
200// EOL_MAC + 1.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000201#define B0_FF_MASK 3
202
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100203// Swap file is in directory of edited file. Used to find the file from
204// different mount points.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000205#define B0_SAME_DIR 4
206
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100207// The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
208// When empty there is only the NUL.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000209#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100211#define STACK_INCR 5 // nr of entries added to ml_stack at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
213/*
214 * The line number where the first mark may be is remembered.
215 * If it is 0 there are no marks at all.
216 * (always used for the current buffer only, no buffer change possible while
217 * executing a global command).
218 */
219static linenr_T lowest_marked = 0;
220
221/*
222 * arguments for ml_find_line()
223 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100224#define ML_DELETE 0x11 // delete line
225#define ML_INSERT 0x12 // insert line
226#define ML_FIND 0x13 // just find the line
227#define ML_FLUSH 0x02 // flush locked block
228#define ML_SIMPLE(x) (x & 0x10) // DEL, INS or FIND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100230// argument for ml_upd_block0()
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200231typedef enum {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100232 UB_FNAME = 0 // update timestamp and filename
233 , UB_SAME_DIR // update the B0_SAME_DIR flag
234 , UB_CRYPT // update crypt key
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200235} upd_block0_T;
236
237#ifdef FEAT_CRYPT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100238static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200239#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100240static void ml_upd_block0(buf_T *buf, upd_block0_T what);
241static void set_b0_fname(ZERO_BL *, buf_T *buf);
242static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100243static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100244static time_t swapfile_info(char_u *);
245static int recov_file_names(char_u **, char_u *, int prepend_dot);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100246static char_u *findswapname(buf_T *, char_u **, char_u *);
247static void ml_flush_line(buf_T *);
248static bhdr_T *ml_new_data(memfile_T *, int, int);
249static bhdr_T *ml_new_ptr(memfile_T *);
250static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
251static int ml_add_stack(buf_T *);
252static void ml_lineadd(buf_T *, int);
253static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100255static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100257static void long_to_char(long, char_u *);
258static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200259#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200260static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200261#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100263static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#endif
265
266/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000267 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000269 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 */
271 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100272ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273{
274 memfile_T *mfp;
275 bhdr_T *hp = NULL;
276 ZERO_BL *b0p;
277 PTR_BL *pp;
278 DATA_BL *dp;
279
Bram Moolenaar4770d092006-01-12 23:22:24 +0000280 /*
281 * init fields in memline struct
282 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100283 buf->b_ml.ml_stack_size = 0; // no stack yet
284 buf->b_ml.ml_stack = NULL; // no stack yet
285 buf->b_ml.ml_stack_top = 0; // nothing in the stack
286 buf->b_ml.ml_locked = NULL; // no cached block
287 buf->b_ml.ml_line_lnum = 0; // no cached line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000289 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290#endif
291
Bram Moolenaare1004402020-10-24 20:49:43 +0200292 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100293 buf->b_p_swf = FALSE;
294
Bram Moolenaar4770d092006-01-12 23:22:24 +0000295 /*
296 * When 'updatecount' is non-zero swap file may be opened later.
297 */
298 if (p_uc && buf->b_p_swf)
299 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000301 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302
Bram Moolenaar4770d092006-01-12 23:22:24 +0000303 /*
304 * Open the memfile. No swap file is created yet.
305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 mfp = mf_open(NULL, 0);
307 if (mfp == NULL)
308 goto error;
309
Bram Moolenaar4770d092006-01-12 23:22:24 +0000310 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200311#ifdef FEAT_CRYPT
312 mfp->mf_buffer = buf;
313#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000314 buf->b_ml.ml_flags = ML_EMPTY;
315 buf->b_ml.ml_line_count = 1;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000316#ifdef FEAT_LINEBREAK
317 curwin->w_nrwidth_line_count = 0;
318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320/*
321 * fill block0 struct and write page 0
322 */
323 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
324 goto error;
325 if (hp->bh_bnum != 0)
326 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100327 iemsg(_("E298: Didn't get block nr 0?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 goto error;
329 }
330 b0p = (ZERO_BL *)(hp->bh_data);
331
332 b0p->b0_id[0] = BLOCK0_ID0;
333 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
335 b0p->b0_magic_int = (int)B0_MAGIC_INT;
336 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
337 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200338 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000341
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000342#ifdef FEAT_SPELL
343 if (!buf->b_spell)
344#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000345 {
346 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
347 b0p->b0_flags = get_fileformat(buf) + 1;
348 set_b0_fname(b0p, buf);
349 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
350 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
351 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
352 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
353 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200354#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200355 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200356#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
359 /*
360 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200361 * the swap file in findswapname(). Don't do this for a help files or
362 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 * Only works when there's a swapfile, otherwise it's done when the file
364 * is created.
365 */
366 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000367 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 (void)mf_sync(mfp, 0);
369
Bram Moolenaar4770d092006-01-12 23:22:24 +0000370 /*
371 * Fill in root pointer block and write page 1.
372 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 if ((hp = ml_new_ptr(mfp)) == NULL)
374 goto error;
375 if (hp->bh_bnum != 1)
376 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100377 iemsg(_("E298: Didn't get block nr 1?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 goto error;
379 }
380 pp = (PTR_BL *)(hp->bh_data);
381 pp->pb_count = 1;
382 pp->pb_pointer[0].pe_bnum = 2;
383 pp->pb_pointer[0].pe_page_count = 1;
384 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100385 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 mf_put(mfp, hp, TRUE, FALSE);
387
Bram Moolenaar4770d092006-01-12 23:22:24 +0000388 /*
389 * Allocate first data block and create an empty line 1.
390 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
392 goto error;
393 if (hp->bh_bnum != 2)
394 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100395 iemsg(_("E298: Didn't get block nr 2?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 goto error;
397 }
398
399 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100400 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 dp->db_free -= 1 + INDEX_SIZE;
402 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100403 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404
405 return OK;
406
407error:
408 if (mfp != NULL)
409 {
410 if (hp)
411 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100412 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000414 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 return FAIL;
416}
417
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200418#if defined(FEAT_CRYPT) || defined(PROTO)
419/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200420 * Prepare encryption for "buf" for the current key and method.
421 */
422 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100423ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200424{
425 if (*buf->b_p_key != NUL)
426 {
427 int method_nr = crypt_get_method_nr(buf);
428
429 if (method_nr > CRYPT_M_ZIP)
430 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100431 // Generate a seed and store it in the memfile.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200432 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
433 }
434 }
435}
436
437/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200438 * Prepare encryption for "buf" with block 0 "b0p".
439 */
440 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100441ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200442{
443 if (*buf->b_p_key == NUL)
444 b0p->b0_id[1] = BLOCK0_ID1;
445 else
446 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200447 int method_nr = crypt_get_method_nr(buf);
448
449 b0p->b0_id[1] = id1_codes[method_nr];
450 if (method_nr > CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200451 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100452 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200453 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
454 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
455 }
456 }
457}
458
459/*
460 * Called after the crypt key or 'cryptmethod' was changed for "buf".
461 * Will apply this to the swapfile.
462 * "old_key" is the previous key. It is equal to buf->b_p_key when
463 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200464 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
465 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200466 */
467 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100468ml_set_crypt_key(
469 buf_T *buf,
470 char_u *old_key,
471 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200472{
473 memfile_T *mfp = buf->b_ml.ml_mfp;
474 bhdr_T *hp;
475 int page_count;
476 int idx;
477 long error;
478 infoptr_T *ip;
479 PTR_BL *pp;
480 DATA_BL *dp;
481 blocknr_T bnum;
482 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200483 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200484
Bram Moolenaar3832c462010-08-04 15:32:46 +0200485 if (mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100486 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200487 old_method = crypt_method_nr_from_name(old_cm);
488
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100489 // First make sure the swapfile is in a consistent state, using the old
490 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200491 {
492 char_u *new_key = buf->b_p_key;
493 char_u *new_buf_cm = buf->b_p_cm;
494
495 buf->b_p_key = old_key;
496 buf->b_p_cm = old_cm;
497 ml_preserve(buf, FALSE);
498 buf->b_p_key = new_key;
499 buf->b_p_cm = new_buf_cm;
500 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200501
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100502 // Set the key, method and seed to be used for reading, these must be the
503 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200504 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200505 mfp->mf_old_cm = old_method;
506 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200507 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
508
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100509 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200510 ml_upd_block0(buf, UB_CRYPT);
511
512 if (mfp->mf_infile_count > 2)
513 {
514 /*
515 * Need to read back all data blocks from disk, decrypt them with the
516 * old key/method and mark them to be written. The algorithm is
517 * similar to what happens in ml_recover(), but we skip negative block
518 * numbers.
519 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100520 ml_flush_line(buf); // flush buffered line
521 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200522
523 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100524 bnum = 1; // start with block 1
525 page_count = 1; // which is 1 page
526 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200527 error = 0;
528 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100529 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100530 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200531
532 for ( ; !got_int; line_breakcheck())
533 {
534 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100535 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200536
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100537 // get the block (pointer or data)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200538 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
539 {
540 if (bnum == 1)
541 break;
542 ++error;
543 }
544 else
545 {
546 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100547 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200548 {
549 if (pp->pb_count == 0)
550 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100551 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200552 ++error;
553 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100554 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200555 {
556 if (pp->pb_pointer[idx].pe_bnum < 0)
557 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100558 // Skip data block with negative block number.
559 // Should not happen, because of the ml_preserve()
560 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100561 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200562 continue;
563 }
564
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100565 // going one block deeper in the tree, new entry in
566 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200567 if ((top = ml_add_stack(buf)) < 0)
568 {
569 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100570 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200571 }
572 ip = &(buf->b_ml.ml_stack[top]);
573 ip->ip_bnum = bnum;
574 ip->ip_index = idx;
575
576 bnum = pp->pb_pointer[idx].pe_bnum;
577 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200578 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200579 continue;
580 }
581 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100582 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200583 {
584 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100585 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200586 ++error;
587 else
588 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100589 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200590 mf_put(mfp, hp, TRUE, FALSE);
591 hp = NULL;
592 }
593 }
594 }
595
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100596 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200597 break;
598
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100599 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200600 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
601 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100602 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200603 page_count = 1;
604 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200605 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100606 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100607
608 if (error > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100609 emsg(_("E843: Error while updating swap file crypt"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200610 }
611
612 mfp->mf_old_key = NULL;
613}
614#endif
615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616/*
617 * ml_setname() is called when the file name of "buf" has been changed.
618 * It may rename the swap file.
619 */
620 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100621ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622{
623 int success = FALSE;
624 memfile_T *mfp;
625 char_u *fname;
626 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100627#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 char_u *p;
629#endif
630
631 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100632 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 {
634 /*
635 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
636 * For help files we will make a swap file now.
637 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200638 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100639 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 return;
641 }
642
643 /*
644 * Try all directories in the 'directory' option.
645 */
646 dirp = p_dir;
647 for (;;)
648 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100649 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000651 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100652 // alloc's fname
653 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200654 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100655 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 continue;
657
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100658#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 /*
660 * Set full pathname for swap file now, because a ":!cd dir" may
661 * change directory without us knowing it.
662 */
663 p = FullName_save(fname, FALSE);
664 vim_free(fname);
665 fname = p;
666 if (fname == NULL)
667 continue;
668#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100669 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 if (fnamecmp(fname, mfp->mf_fname) == 0)
671 {
672 vim_free(fname);
673 success = TRUE;
674 break;
675 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100676 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 if (mfp->mf_fd >= 0)
678 {
679 close(mfp->mf_fd);
680 mfp->mf_fd = -1;
681 }
682
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100683 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 if (vim_rename(mfp->mf_fname, fname) == 0)
685 {
686 success = TRUE;
687 vim_free(mfp->mf_fname);
688 mfp->mf_fname = fname;
689 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100690#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100691 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692#else
693 mf_set_ffname(mfp);
694#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200695 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 break;
697 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100698 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 }
700
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100701 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 {
703 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
704 if (mfp->mf_fd < 0)
705 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100706 // could not (re)open the swap file, what can we do????
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100707 emsg(_("E301: Oops, lost the swap file!!!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 return;
709 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000710#ifdef HAVE_FD_CLOEXEC
711 {
712 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
713 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100714 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000715 }
716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 }
718 if (!success)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100719 emsg(_("E302: Could not rename swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720}
721
722/*
723 * Open a file for the memfile for all buffers that are not readonly or have
724 * been modified.
725 * Used when 'updatecount' changes from zero to non-zero.
726 */
727 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100728ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
730 buf_T *buf;
731
Bram Moolenaar29323592016-07-24 22:04:11 +0200732 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 if (!buf->b_p_ro || buf->b_changed)
734 ml_open_file(buf);
735}
736
737/*
738 * Open a swap file for an existing memfile, if there is no swap file yet.
739 * If we are unable to find a file name, mf_fname will be NULL
740 * and the memfile will be in memory only (no recovery possible).
741 */
742 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100743ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744{
745 memfile_T *mfp;
746 char_u *fname;
747 char_u *dirp;
748
749 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200750 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
751 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100752 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753
Bram Moolenaara1956f62006-03-12 22:18:00 +0000754#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100755 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000756 if (buf->b_spell)
757 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200758 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000759 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100760 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000761 buf->b_may_swap = FALSE;
762 return;
763 }
764#endif
765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 /*
767 * Try all directories in 'directory' option.
768 */
769 dirp = p_dir;
770 for (;;)
771 {
772 if (*dirp == NUL)
773 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100774 // There is a small chance that between choosing the swap file name
775 // and creating it, another Vim creates the file. In that case the
776 // creation will fail and we will use another directory.
777 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200778 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100779 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (fname == NULL)
781 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100782 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100784#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 /*
786 * set full pathname for swap file now, because a ":!cd dir" may
787 * change directory without us knowing it.
788 */
789 mf_fullname(mfp);
790#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200791 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000792
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100793 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000795 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100796 // Mark all blocks that should be in the swapfile as dirty.
797 // Needed for when the 'swapfile' option was reset, so that
798 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000799 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000801 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100802 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 mf_close_file(buf, FALSE);
804 }
805 }
806
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200807 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 {
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200809 need_wait_return = TRUE; // call wait_return later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100811 (void)semsg(_("E303: Unable to open swap file for \"%s\", recovery impossible"),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200812 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 --no_wait_return;
814 }
815
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100816 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 buf->b_may_swap = FALSE;
818}
819
820/*
821 * If still need to create a swap file, and starting to edit a not-readonly
822 * file, or reading into an existing buffer, create a swap file now.
823 */
824 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100825check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200826 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200828 int old_msg_silent = msg_silent; // might be reset by an E325 message
829
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
831 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200832 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833}
834
835/*
836 * Close memline for buffer 'buf'.
837 * If 'del_file' is TRUE, delete the swap file
838 */
839 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100840ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100842 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100844 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY))
846 vim_free(buf->b_ml.ml_line_ptr);
847 vim_free(buf->b_ml.ml_stack);
848#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100849 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850#endif
851 buf->b_ml.ml_mfp = NULL;
852
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100853 // Reset the "recovered" flag, give the ATTENTION prompt the next time
854 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 buf->b_flags &= ~BF_RECOVERED;
856}
857
858/*
859 * Close all existing memlines and memfiles.
860 * Only used when exiting.
861 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000862 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 */
864 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100865ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866{
867 buf_T *buf;
868
Bram Moolenaar29323592016-07-24 22:04:11 +0200869 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000870 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
871 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100872#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100873 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100876 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877#endif
878}
879
880/*
881 * Close all memfiles for not modified buffers.
882 * Only use just before exiting!
883 */
884 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100885ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886{
887 buf_T *buf;
888
Bram Moolenaar29323592016-07-24 22:04:11 +0200889 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100891 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892}
893
894/*
895 * Update the timestamp in the .swp file.
896 * Used when the file has been written.
897 */
898 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100899ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200901 ml_upd_block0(buf, UB_FNAME);
902}
903
904/*
905 * Return FAIL when the ID of "b0p" is wrong.
906 */
907 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100908ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200909{
910 if (b0p->b0_id[0] != BLOCK0_ID0
911 || (b0p->b0_id[1] != BLOCK0_ID1
912 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200913 && b0p->b0_id[1] != BLOCK0_ID1_C1
914 && b0p->b0_id[1] != BLOCK0_ID1_C2)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200915 )
916 return FAIL;
917 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000918}
919
920/*
921 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
922 */
923 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100924ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000925{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 memfile_T *mfp;
927 bhdr_T *hp;
928 ZERO_BL *b0p;
929
930 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200931 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200933 hp = mf_get(mfp, (blocknr_T)0, 1);
934 if (hp == NULL)
935 {
936#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100937 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200938 if (what == UB_CRYPT)
939 ml_set_mfp_crypt(buf);
940#endif
941 return;
942 }
943
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200945 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100946 iemsg(_("E304: ml_upd_block0(): Didn't get block 0??"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000948 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200949 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000950 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200951#ifdef FEAT_CRYPT
952 else if (what == UB_CRYPT)
953 ml_set_b0_crypt(buf, b0p);
954#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100955 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000956 set_b0_dir_flag(b0p, buf);
957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 mf_put(mfp, hp, TRUE, FALSE);
959}
960
961/*
962 * Write file name and timestamp into block 0 of a swap file.
963 * Also set buf->b_mtime.
964 * Don't use NameBuff[]!!!
965 */
966 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100967set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200969 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970
971 if (buf->b_ffname == NULL)
972 b0p->b0_fname[0] = NUL;
973 else
974 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100975#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100976 // Systems that cannot translate "~user" back into a path: copy the
977 // file name unmodified. Do use slashes instead of backslashes for
978 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200979 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000980# ifdef BACKSLASH_IN_FILENAME
981 forward_slash(b0p->b0_fname);
982# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983#else
984 size_t flen, ulen;
985 char_u uname[B0_UNAME_SIZE];
986
987 /*
988 * For a file under the home directory of the current user, we try to
989 * replace the home directory path with "~user". This helps when
990 * editing the same file on different machines over a network.
991 * First replace home dir path with "~/" with home_replace().
992 * Then insert the user name to get "~user/".
993 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200994 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
995 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 if (b0p->b0_fname[0] == '~')
997 {
998 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100999 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001001 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1002 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1003 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 else
1005 {
1006 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1007 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1008 }
1009 }
1010#endif
1011 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1012 {
1013 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1014#ifdef CHECK_INODE
1015 long_to_char((long)st.st_ino, b0p->b0_ino);
1016#endif
1017 buf_store_time(buf, &st, buf->b_ffname);
1018 buf->b_mtime_read = buf->b_mtime;
1019 }
1020 else
1021 {
1022 long_to_char(0L, b0p->b0_mtime);
1023#ifdef CHECK_INODE
1024 long_to_char(0L, b0p->b0_ino);
1025#endif
1026 buf->b_mtime = 0;
1027 buf->b_mtime_read = 0;
1028 buf->b_orig_size = 0;
1029 buf->b_orig_mode = 0;
1030 }
1031 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001032
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001033 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001034 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035}
1036
1037/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001038 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1039 * swapfile for "buf" are in the same directory.
1040 * This is fail safe: if we are not sure the directories are equal the flag is
1041 * not set.
1042 */
1043 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001044set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001045{
1046 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1047 b0p->b0_flags |= B0_SAME_DIR;
1048 else
1049 b0p->b0_flags &= ~B0_SAME_DIR;
1050}
1051
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001052/*
1053 * When there is room, add the 'fileencoding' to block zero.
1054 */
1055 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001056add_b0_fenc(
1057 ZERO_BL *b0p,
1058 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001059{
1060 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001061 int size = B0_FNAME_SIZE_NOCRYPT;
1062
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001063#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001064 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1065 // With encryption it's OK to move elsewhere, the swap file is not
1066 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001067 if (*buf->b_p_key != NUL)
1068 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001069#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001070
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001071 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001072 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001073 b0p->b0_flags &= ~B0_HAS_FENC;
1074 else
1075 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001076 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001077 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001078 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001079 b0p->b0_flags |= B0_HAS_FENC;
1080 }
1081}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001082
1083
1084/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001085 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001086 * If "checkext" is TRUE, check the extension and detect whether it is
1087 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 */
1089 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001090ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091{
1092 buf_T *buf = NULL;
1093 memfile_T *mfp = NULL;
1094 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001095 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 bhdr_T *hp = NULL;
1097 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001098 int b0_ff;
1099 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001100#ifdef FEAT_CRYPT
1101 int b0_cm = -1;
1102#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 PTR_BL *pp;
1104 DATA_BL *dp;
1105 infoptr_T *ip;
1106 blocknr_T bnum;
1107 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001108 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 int len;
1110 int directly;
1111 linenr_T lnum;
1112 char_u *p;
1113 int i;
1114 long error;
1115 int cannot_open;
1116 linenr_T line_count;
1117 int has_error;
1118 int idx;
1119 int top;
1120 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001121 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 int called_from_main;
1123 int serious_error = TRUE;
1124 long mtime;
1125 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001126 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 recoverymode = TRUE;
1129 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001130 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001131
1132 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001133 * 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 +00001134 * Otherwise a search is done to find the swap file(s).
1135 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001137 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 fname = (char_u *)"";
1139 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001140 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001141#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001142 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001144 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001146 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001147 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1148 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001149 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 {
1151 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001152 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 }
1154 else
1155 {
1156 directly = FALSE;
1157
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001158 // count the number of matching swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001159 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001160 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001162 semsg(_("E305: No swap file found for %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 goto theend;
1164 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001165 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001167 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001169 // list the names of the swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001170 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001172 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001173 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 if (i < 1 || i > len)
1175 goto theend;
1176 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001177 // get the swap file name that will be used
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001178 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001180 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001181 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001183 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001184 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 getout(1);
1186
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001187 /*
1188 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001189 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001190 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001191 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001195 /*
1196 * init fields in memline struct
1197 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001198 buf->b_ml.ml_stack_size = 0; // no stack yet
1199 buf->b_ml.ml_stack = NULL; // no stack yet
1200 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1201 buf->b_ml.ml_line_lnum = 0; // no cached line
1202 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001204#ifdef FEAT_CRYPT
1205 buf->b_p_key = empty_option;
1206 buf->b_p_cm = empty_option;
1207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001209 /*
1210 * open the memfile from the old swap file
1211 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001212 p = vim_strsave(fname_used); // save "fname_used" for the message:
1213 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001214 mfp = mf_open(fname_used, O_RDONLY);
1215 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 if (mfp == NULL || mfp->mf_fd < 0)
1217 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001218 if (fname_used != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001219 semsg(_("E306: Cannot open %s"), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 goto theend;
1221 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001223#ifdef FEAT_CRYPT
1224 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001225#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227 /*
1228 * The page size set in mf_open() might be different from the page size
1229 * used in the swap file, we must get it from block 0. But to read block
1230 * 0 we need a page size. Use the minimal size for block 0 here, it will
1231 * be set to the real value below.
1232 */
1233 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1234
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001235 /*
1236 * try to read block 0
1237 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1239 {
1240 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001241 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001243 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 attr | MSG_HIST);
1245 msg_end();
1246 goto theend;
1247 }
1248 b0p = (ZERO_BL *)(hp->bh_data);
1249 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1250 {
1251 msg_start();
1252 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001253 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001255 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 msg_end();
1257 goto theend;
1258 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001259 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001261 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 goto theend;
1263 }
1264 if (b0_magic_wrong(b0p))
1265 {
1266 msg_start();
1267 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001268#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001270 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 attr | MSG_HIST);
1272 else
1273#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001274 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001276 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001277 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001279 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1280 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 msg_end();
1282 goto theend;
1283 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001284
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001285#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001286 for (i = 0; i < (int)(sizeof(id1_codes) / sizeof(int)); ++i)
1287 if (id1_codes[i] == b0p->b0_id[1])
1288 b0_cm = i;
1289 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001290 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001291 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001292#else
1293 if (b0p->b0_id[1] != BLOCK0_ID1)
1294 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001295 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001296 goto theend;
1297 }
1298#endif
1299
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 /*
1301 * If we guessed the wrong page size, we have to recalculate the
1302 * highest block number in the file.
1303 */
1304 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1305 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001306 unsigned previous_page_size = mfp->mf_page_size;
1307
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001309 if (mfp->mf_page_size < previous_page_size)
1310 {
1311 msg_start();
1312 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001313 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001314 attr | MSG_HIST);
1315 msg_end();
1316 goto theend;
1317 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001318 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001319 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 else
1321 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1322 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001323
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001324 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001325 p = alloc(mfp->mf_page_size);
1326 if (p == NULL)
1327 goto theend;
1328 mch_memmove(p, hp->bh_data, previous_page_size);
1329 vim_free(hp->bh_data);
1330 hp->bh_data = p;
1331 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 }
1333
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001334 /*
1335 * If .swp file name given directly, use name from swap file for buffer.
1336 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 if (directly)
1338 {
1339 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1340 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1341 goto theend;
1342 }
1343
1344 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001345 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346
1347 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001348 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 else
1350 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001351 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 msg_putchar('\n');
1353
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001354 /*
1355 * check date of swap file and original file
1356 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 mtime = char_to_long(b0p->b0_mtime);
1358 if (curbuf->b_ffname != NULL
1359 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1360 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1361 && org_stat.st_mtime > swp_stat.st_mtime)
1362 || org_stat.st_mtime != mtime))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001363 emsg(_("E308: Warning: Original file may have been changed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001365
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001366 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001367 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1368 if (b0p->b0_flags & B0_HAS_FENC)
1369 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001370 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001371
1372#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001373 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001374 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001375 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001376#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001377 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001378 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001379 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001380 }
1381
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001382 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 hp = NULL;
1384
1385 /*
1386 * Now that we are sure that the file is going to be recovered, clear the
1387 * contents of the current buffer.
1388 */
1389 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001390 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001391
1392 /*
1393 * Try reading the original file to obtain the values of 'fileformat',
1394 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001395 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 */
1397 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001398 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001401#ifdef FEAT_CRYPT
1402 if (b0_cm >= 0)
1403 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001404 // Need to ask the user for the crypt key. If this fails we continue
1405 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001406 if (*curbuf->b_p_key != NUL)
1407 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001408 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001409 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1410 msg_puts(_("\nenter the new crypt key."));
1411 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1412 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001413 }
1414 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001415 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001416 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001417 if (buf->b_p_key == NULL)
1418 buf->b_p_key = curbuf->b_p_key;
1419 else if (*buf->b_p_key == NUL)
1420 {
1421 vim_free(buf->b_p_key);
1422 buf->b_p_key = curbuf->b_p_key;
1423 }
1424 if (buf->b_p_key == NULL)
1425 buf->b_p_key = empty_option;
1426 }
1427#endif
1428
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001429 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001430 if (b0_ff != 0)
1431 set_fileformat(b0_ff - 1, OPT_LOCAL);
1432 if (b0_fenc != NULL)
1433 {
1434 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1435 vim_free(b0_fenc);
1436 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001437 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001438
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001439 bnum = 1; // start with block 1
1440 page_count = 1; // which is 1 page
1441 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001443 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 error = 0;
1445 buf->b_ml.ml_stack_top = 0;
1446 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001447 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
1449 if (curbuf->b_ffname == NULL)
1450 cannot_open = TRUE;
1451 else
1452 cannot_open = FALSE;
1453
1454 serious_error = FALSE;
1455 for ( ; !got_int; line_breakcheck())
1456 {
1457 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001458 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
1460 /*
1461 * get block
1462 */
1463 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
1464 {
1465 if (bnum == 1)
1466 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001467 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 goto theend;
1469 }
1470 ++error;
1471 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1472 (colnr_T)0, TRUE);
1473 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001474 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 {
1476 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001477 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001479 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 if (idx == 0 && line_count != 0)
1481 {
1482 for (i = 0; i < (int)pp->pb_count; ++i)
1483 line_count -= pp->pb_pointer[i].pe_line_count;
1484 if (line_count != 0)
1485 {
1486 ++error;
1487 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1488 (colnr_T)0, TRUE);
1489 }
1490 }
1491
1492 if (pp->pb_count == 0)
1493 {
1494 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1495 (colnr_T)0, TRUE);
1496 ++error;
1497 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001498 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 {
1500 if (pp->pb_pointer[idx].pe_bnum < 0)
1501 {
1502 /*
1503 * Data block with negative block number.
1504 * Try to read lines from the original file.
1505 * This is slow, but it works.
1506 */
1507 if (!cannot_open)
1508 {
1509 line_count = pp->pb_pointer[idx].pe_line_count;
1510 if (readfile(curbuf->b_ffname, NULL, lnum,
1511 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001512 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 cannot_open = TRUE;
1514 else
1515 lnum += line_count;
1516 }
1517 if (cannot_open)
1518 {
1519 ++error;
1520 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1521 (colnr_T)0, TRUE);
1522 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001523 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 continue;
1525 }
1526
1527 /*
1528 * going one block deeper in the tree
1529 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001530 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 {
1532 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001533 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 }
1535 ip = &(buf->b_ml.ml_stack[top]);
1536 ip->ip_bnum = bnum;
1537 ip->ip_index = idx;
1538
1539 bnum = pp->pb_pointer[idx].pe_bnum;
1540 line_count = pp->pb_pointer[idx].pe_line_count;
1541 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001542 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 continue;
1544 }
1545 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001546 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 {
1548 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001549 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 {
1551 if (bnum == 1)
1552 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001553 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 mfp->mf_fname);
1555 goto theend;
1556 }
1557 ++error;
1558 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1559 (colnr_T)0, TRUE);
1560 }
1561 else
1562 {
1563 /*
1564 * it is a data block
1565 * Append all the lines in this block
1566 */
1567 has_error = FALSE;
1568 /*
1569 * check length of block
1570 * if wrong, use length in pointer block
1571 */
1572 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1573 {
1574 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1575 (colnr_T)0, TRUE);
1576 ++error;
1577 has_error = TRUE;
1578 dp->db_txt_end = page_count * mfp->mf_page_size;
1579 }
1580
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001581 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1583
1584 /*
1585 * check number of lines in block
1586 * if wrong, use count in data block
1587 */
1588 if (line_count != dp->db_line_count)
1589 {
1590 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1591 (colnr_T)0, TRUE);
1592 ++error;
1593 has_error = TRUE;
1594 }
1595
1596 for (i = 0; i < dp->db_line_count; ++i)
1597 {
1598 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001599 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 || txt_start >= (int)dp->db_txt_end)
1601 {
1602 p = (char_u *)"???";
1603 ++error;
1604 }
1605 else
1606 p = (char_u *)dp + txt_start;
1607 ml_append(lnum++, p, (colnr_T)0, TRUE);
1608 }
1609 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001610 ml_append(lnum++, (char_u *)_("???END"),
1611 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 }
1613 }
1614 }
1615
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001616 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 break;
1618
1619 /*
1620 * go one block up in the tree
1621 */
1622 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1623 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001624 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 page_count = 1;
1626 }
1627
1628 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001629 * Compare the buffer contents with the original file. When they differ
1630 * set the 'modified' flag.
1631 * Lines 1 - lnum are the new contents.
1632 * Lines lnum + 1 to ml_line_count are the original contents.
1633 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001635 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1636 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001637 // Recovering an empty file results in two lines and the first line is
1638 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001639 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1640 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001641 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001642 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001643 }
1644 }
1645 else
1646 {
1647 for (idx = 1; idx <= lnum; ++idx)
1648 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001649 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001650 p = vim_strsave(ml_get(idx));
1651 i = STRCMP(p, ml_get(idx + lnum));
1652 vim_free(p);
1653 if (i != 0)
1654 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001655 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001656 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001657 break;
1658 }
1659 }
1660 }
1661
1662 /*
1663 * Delete the lines from the original file and the dummy line from the
1664 * empty buffer. These will now be after the last line in the buffer.
1665 */
1666 while (curbuf->b_ml.ml_line_count > lnum
1667 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001668 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 curbuf->b_flags |= BF_RECOVERED;
1670
1671 recoverymode = FALSE;
1672 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001673 emsg(_("E311: Recovery Interrupted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 else if (error)
1675 {
1676 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001677 msg(">>>>>>>>>>>>>");
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001678 emsg(_("E312: Errors detected while recovering; look for lines starting with ???"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001680 msg(_("See \":help E312\" for more information."));
1681 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
1683 else
1684 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001685 if (curbuf->b_changed)
1686 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001687 msg(_("Recovery completed. You should check if everything is OK."));
1688 msg_puts(_("\n(You might want to write out this file under another name\n"));
1689 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001690 }
1691 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001692 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001693 msg_puts(_("\nYou may want to delete the .swp file now."));
1694#if defined(UNIX) || defined(MSWIN)
1695 if (mch_process_running(char_to_long(b0p->b0_pid)))
1696 {
1697 // Warn there could be an active Vim on the same file, the user may
1698 // want to kill it.
1699 msg_puts(_("\nNote: process STILL RUNNING: "));
1700 msg_outnum(char_to_long(b0p->b0_pid));
1701 }
1702#endif
1703 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 cmdline_row = msg_row;
1705 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001706#ifdef FEAT_CRYPT
1707 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1708 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001709 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001710 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1711 }
1712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 redraw_curbuf_later(NOT_VALID);
1714
1715theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001716 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 recoverymode = FALSE;
1718 if (mfp != NULL)
1719 {
1720 if (hp != NULL)
1721 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001722 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001724 if (buf != NULL)
1725 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001726#ifdef FEAT_CRYPT
1727 if (buf->b_p_key != curbuf->b_p_key)
1728 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001729 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001730#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001731 vim_free(buf->b_ml.ml_stack);
1732 vim_free(buf);
1733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (serious_error && called_from_main)
1735 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 else
1737 {
1738 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1739 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1740 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 return;
1742}
1743
1744/*
1745 * Find the names of swap files in current directory and the directory given
1746 * with the 'directory' option.
1747 *
1748 * Used to:
1749 * - list the swap files for "vim -r"
1750 * - count the number of swap files when recovering
1751 * - list the swap files when recovering
1752 * - find the name of the n'th swap file when recovering
1753 */
1754 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001755recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001756 char_u *fname, // base for swap file name
1757 int list, // when TRUE, list the swap file names
1758 int nr, // when non-zero, return nr'th swap file name
1759 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 int num_names;
1762 char_u *(names[6]);
1763 char_u *tail;
1764 char_u *p;
1765 int num_files;
1766 int file_count = 0;
1767 char_u **files;
1768 int i;
1769 char_u *dirp;
1770 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001771 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001772#ifdef HAVE_READLINK
1773 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001774#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001775
Bram Moolenaar64354da2010-05-25 21:37:17 +02001776 if (fname != NULL)
1777 {
1778#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001779 // Expand symlink in the file name, because the swap file is created
1780 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001781 if (resolve_symlink(fname, fname_buf) == OK)
1782 fname_res = fname_buf;
1783 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001784#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001785 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001786 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787
1788 if (list)
1789 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001790 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001791 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 msg_putchar('\n');
1793 }
1794
1795 /*
1796 * Do the loop for every directory in 'directory'.
1797 * First allocate some memory to put the directory name in.
1798 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001799 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 dirp = p_dir;
1801 while (dir_name != NULL && *dirp)
1802 {
1803 /*
1804 * Isolate a directory name from *dirp and put it in dir_name (we know
1805 * it is large enough, so use 31000 for length).
1806 * Advance dirp to next directory name.
1807 */
1808 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1809
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001810 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001812 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001813 {
1814#ifdef VMS
1815 names[0] = vim_strsave((char_u *)"*_sw%");
1816#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001819#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001820 // For Unix names starting with a dot are special. MS-Windows
1821 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 names[1] = vim_strsave((char_u *)".*.sw?");
1823 names[2] = vim_strsave((char_u *)".sw?");
1824 num_names = 3;
1825#else
1826# ifdef VMS
1827 names[1] = vim_strsave((char_u *)".*_sw%");
1828 num_names = 2;
1829# else
1830 num_names = 1;
1831# endif
1832#endif
1833 }
1834 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001835 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001837 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001839 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 {
1841#ifdef VMS
1842 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1843#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001846#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001847 // For Unix names starting with a dot are special. MS-Windows
1848 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1850 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1851 num_names = 3;
1852#else
1853# ifdef VMS
1854 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1855 num_names = 2;
1856# else
1857 num_names = 1;
1858# endif
1859#endif
1860 }
1861 else
1862 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001863#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001864 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001865
1866 p = dir_name + len;
1867 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001869 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001870 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 }
1872 else
1873#endif
1874 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001875 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876 tail = concat_fnames(dir_name, tail, TRUE);
1877 }
1878 if (tail == NULL)
1879 num_names = 0;
1880 else
1881 {
1882 num_names = recov_file_names(names, tail, FALSE);
1883 vim_free(tail);
1884 }
1885 }
1886 }
1887
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001888 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 for (i = 0; i < num_names; ++i)
1890 {
1891 if (names[i] == NULL)
1892 {
1893 for (i = 0; i < num_names; ++i)
1894 vim_free(names[i]);
1895 num_names = 0;
1896 }
1897 }
1898 if (num_names == 0)
1899 num_files = 0;
1900 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001901 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 num_files = 0;
1903
1904 /*
1905 * When no swap file found, wildcard expansion might have failed (e.g.
1906 * not able to execute the shell).
1907 * Try finding a swap file by simply adding ".swp" to the file name.
1908 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001909 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001911 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 char_u *swapname;
1913
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001914 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001915#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001916 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001918 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001920 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 if (swapname != NULL)
1922 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001923 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001925 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 if (files != NULL)
1927 {
1928 files[0] = swapname;
1929 swapname = NULL;
1930 num_files = 1;
1931 }
1932 }
1933 vim_free(swapname);
1934 }
1935 }
1936
1937 /*
1938 * remove swapfile name of the current buffer, it must be ignored
1939 */
1940 if (curbuf->b_ml.ml_mfp != NULL
1941 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1942 {
1943 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001944 // Do not expand wildcards, on windows would try to expand
1945 // "%tmp%" in "%tmp%file".
1946 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001948 // Remove the name from files[i]. Move further entries
1949 // down. When the array becomes empty free it here, since
1950 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00001952 if (--num_files == 0)
1953 vim_free(files);
1954 else
1955 for ( ; i < num_files; ++i)
1956 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 }
1958 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001959 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 {
1961 file_count += num_files;
1962 if (nr <= file_count)
1963 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001964 *fname_out = vim_strsave(
1965 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001966 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968 }
1969 else if (list)
1970 {
1971 if (dir_name[0] == '.' && dir_name[1] == NUL)
1972 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001973 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001974 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001976 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 }
1978 else
1979 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001980 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001982 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 }
1984
1985 if (num_files)
1986 {
1987 for (i = 0; i < num_files; ++i)
1988 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001989 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001991 msg_puts(". ");
1992 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 msg_putchar('\n');
1994 (void)swapfile_info(files[i]);
1995 }
1996 }
1997 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001998 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 out_flush();
2000 }
2001 else
2002 file_count += num_files;
2003
2004 for (i = 0; i < num_names; ++i)
2005 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002006 if (num_files > 0)
2007 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 }
2009 vim_free(dir_name);
2010 return file_count;
2011}
2012
Bram Moolenaar4f974752019-02-17 17:44:42 +01002013#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002015 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 * Append the full path to name with path separators made into percent
2017 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"")
2018 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002019 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002020make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002022 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002024 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 if (f != NULL)
2026 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002027 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 if (s != NULL)
2029 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002030 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002031 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002032 if (vim_ispathsep(*d))
2033 *d = '%';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 d = concat_fnames(dir, s, TRUE);
2035 vim_free(s);
2036 }
2037 vim_free(f);
2038 }
2039 return d;
2040}
2041#endif
2042
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002043#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2044 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2045# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046static int process_still_running;
2047#endif
2048
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002049#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002051 * Return information found in swapfile "fname" in dictionary "d".
2052 * This is used by the swapinfo() function.
2053 */
2054 void
2055get_b0_dict(char_u *fname, dict_T *d)
2056{
2057 int fd;
2058 struct block0 b0;
2059
2060 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2061 {
2062 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2063 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002064 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002065 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002066 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002067 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002068 else
2069 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002070 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002071 dict_add_string_len(d, "version", b0.b0_version, 10);
2072 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2073 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2074 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002075
2076 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2077 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002078 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2079# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002080 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002081# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002082 }
2083 }
2084 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002085 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002086 close(fd);
2087 }
2088 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002089 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002090}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002091#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002092
2093/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002094 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 * Returns timestamp (0 when unknown).
2096 */
2097 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002098swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002100 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101 int fd;
2102 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103#ifdef UNIX
2104 char_u uname[B0_UNAME_SIZE];
2105#endif
2106
Bram Moolenaar63d25552019-05-10 21:28:38 +02002107 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108 if (mch_stat((char *)fname, &st) != -1)
2109 {
2110#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002111 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2113 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002114 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002116 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117 }
2118 else
2119#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002120 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002121 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002123 else
2124 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125
2126 /*
2127 * print the original file name
2128 */
2129 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2130 if (fd >= 0)
2131 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002132 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 {
2134 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2135 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002136 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002138 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002140 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 }
2142 else
2143 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002144 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002146 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 else
2148 msg_outtrans(b0.b0_fname);
2149
Bram Moolenaar32526b32019-01-19 17:43:09 +01002150 msg_puts(_("\n modified: "));
2151 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152
2153 if (*(b0.b0_uname) != NUL)
2154 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002155 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 msg_outtrans(b0.b0_uname);
2157 }
2158
2159 if (*(b0.b0_hname) != NUL)
2160 {
2161 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002162 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002164 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 msg_outtrans(b0.b0_hname);
2166 }
2167
2168 if (char_to_long(b0.b0_pid) != 0L)
2169 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002170 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002172#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002173 if (mch_process_running(char_to_long(b0.b0_pid)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002175 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002176# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 process_still_running = TRUE;
2178# endif
2179 }
2180#endif
2181 }
2182
2183 if (b0_magic_wrong(&b0))
2184 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002185#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002187 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 else
2189#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002190 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192 }
2193 }
2194 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002195 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 close(fd);
2197 }
2198 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002199 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 msg_putchar('\n');
2201
Bram Moolenaar63d25552019-05-10 21:28:38 +02002202 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203}
2204
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002205/*
2206 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2207 * be safely deleted.
2208 */
2209 static time_t
2210swapfile_unchanged(char_u *fname)
2211{
2212 stat_T st;
2213 int fd;
2214 struct block0 b0;
2215 int ret = TRUE;
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002216#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002217 long pid;
2218#endif
2219
2220 // must be able to stat the swap file
2221 if (mch_stat((char *)fname, &st) == -1)
2222 return FALSE;
2223
2224 // must be able to read the first block
2225 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2226 if (fd < 0)
2227 return FALSE;
2228 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2229 {
2230 close(fd);
2231 return FALSE;
2232 }
2233
2234 // the ID and magic number must be correct
2235 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2236 ret = FALSE;
2237
2238 // must be unchanged
2239 if (b0.b0_dirty)
2240 ret = FALSE;
2241
2242#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002243 // Host name must be known and must equal the current host name, otherwise
2244 // comparing pid is meaningless.
2245 if (*(b0.b0_hname) == NUL)
2246 {
2247 ret = FALSE;
2248 }
2249 else
2250 {
2251 char_u hostname[B0_HNAME_SIZE];
2252
2253 mch_get_host_name(hostname, B0_HNAME_SIZE);
2254 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002255 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002256 if (STRICMP(b0.b0_hname, hostname) != 0)
2257 ret = FALSE;
2258 }
2259
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002260 // process must be known and not be running
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002261 pid = char_to_long(b0.b0_pid);
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002262 if (pid == 0L || mch_process_running(pid))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002263 ret = FALSE;
2264#endif
2265
Bram Moolenaarf8835082020-11-09 21:04:17 +01002266 // We do not check the user, it should be irrelevant for whether the swap
2267 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002268
2269 close(fd);
2270 return ret;
2271}
2272
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002274recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275{
2276 int num_names;
2277
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 /*
2279 * (Win32 and Win64) never short names, but do prepend a dot.
2280 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2281 * Only use the short name if it is different.
2282 */
2283 char_u *p;
2284 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002285# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 int shortname = curbuf->b_shortname;
2287
2288 curbuf->b_shortname = FALSE;
2289# endif
2290
2291 num_names = 0;
2292
2293 /*
2294 * May also add the file name with a dot prepended, for swap file in same
2295 * dir as original file.
2296 */
2297 if (prepend_dot)
2298 {
2299 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2300 if (names[num_names] == NULL)
2301 goto end;
2302 ++num_names;
2303 }
2304
2305 /*
2306 * Form the normal swap file name pattern by appending ".sw?".
2307 */
2308#ifdef VMS
2309 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2310#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312#endif
2313 if (names[num_names] == NULL)
2314 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002315 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 {
2317 p = names[num_names - 1];
2318 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2319 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002320 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321
2322 if (STRCMP(p, names[num_names]) != 0)
2323 ++num_names;
2324 else
2325 vim_free(names[num_names]);
2326 }
2327 else
2328 ++num_names;
2329
Bram Moolenaar4f974752019-02-17 17:44:42 +01002330# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 /*
2332 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2333 */
2334 curbuf->b_shortname = TRUE;
2335#ifdef VMS
2336 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2337#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339#endif
2340 if (names[num_names] == NULL)
2341 goto end;
2342
2343 /*
2344 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2345 */
2346 p = names[num_names];
2347 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2348 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002349 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 if (STRCMP(names[num_names - 1], p) == 0)
2351 vim_free(names[num_names]);
2352 else
2353 ++num_names;
2354# endif
2355
2356end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002357# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 curbuf->b_shortname = shortname;
2359# endif
2360
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 return num_names;
2362}
2363
2364/*
2365 * sync all memlines
2366 *
2367 * If 'check_file' is TRUE, check if original file exists and was not changed.
2368 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2369 * always sync at least one block.
2370 */
2371 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002372ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373{
2374 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002375 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376
Bram Moolenaar29323592016-07-24 22:04:11 +02002377 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 {
2379 if (buf->b_ml.ml_mfp == NULL || buf->b_ml.ml_mfp->mf_fname == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002380 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002382 ml_flush_line(buf); // flush buffered line
2383 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2385 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2386 && buf->b_ffname != NULL)
2387 {
2388 /*
2389 * If the original file does not exist anymore or has been changed
2390 * call ml_preserve() to get rid of all negative numbered blocks.
2391 */
2392 if (mch_stat((char *)buf->b_ffname, &st) == -1
2393 || st.st_mtime != buf->b_mtime_read
Bram Moolenaar914703b2010-05-31 21:59:46 +02002394 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 {
2396 ml_preserve(buf, FALSE);
2397 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002398 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 }
2400 }
2401 if (buf->b_ml.ml_mfp->mf_dirty)
2402 {
2403 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2404 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002405 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 break;
2407 }
2408 }
2409}
2410
2411/*
2412 * sync one buffer, including negative blocks
2413 *
2414 * after this all the blocks are in the swap file
2415 *
2416 * Used for the :preserve command and when the original file has been
2417 * changed or deleted.
2418 *
2419 * when message is TRUE the success of preserving is reported
2420 */
2421 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002422ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423{
2424 bhdr_T *hp;
2425 linenr_T lnum;
2426 memfile_T *mfp = buf->b_ml.ml_mfp;
2427 int status;
2428 int got_int_save = got_int;
2429
2430 if (mfp == NULL || mfp->mf_fname == NULL)
2431 {
2432 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002433 emsg(_("E313: Cannot preserve, there is no swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 return;
2435 }
2436
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002437 // We only want to stop when interrupted here, not when interrupted
2438 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 got_int = FALSE;
2440
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002441 ml_flush_line(buf); // flush buffered line
2442 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002443 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2444
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002445 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 buf->b_ml.ml_stack_top = 0;
2447
2448 /*
2449 * Some of the data blocks may have been changed from negative to
2450 * positive block number. In that case the pointer blocks need to be
2451 * updated.
2452 *
2453 * We don't know in which pointer block the references are, so we visit
2454 * all data blocks until there are no more translations to be done (or
2455 * we hit the end of the file, which can only happen in case a write fails,
2456 * e.g. when file system if full).
2457 * ml_find_line() does the work by translating the negative block numbers
2458 * when getting the first line of each data block.
2459 */
2460 if (mf_need_trans(mfp) && !got_int)
2461 {
2462 lnum = 1;
2463 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2464 {
2465 hp = ml_find_line(buf, lnum, ML_FIND);
2466 if (hp == NULL)
2467 {
2468 status = FAIL;
2469 goto theend;
2470 }
2471 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2472 lnum = buf->b_ml.ml_locked_high + 1;
2473 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002474 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2475 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2477 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002478 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 }
2480theend:
2481 got_int |= got_int_save;
2482
2483 if (message)
2484 {
2485 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002486 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002488 emsg(_("E314: Preserve failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 }
2490}
2491
2492/*
2493 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2494 * until the next call!
2495 * line1 = ml_get(1);
2496 * line2 = ml_get(2); // line1 is now invalid!
2497 * Make a copy of the line if necessary.
2498 */
2499/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002500 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 *
2502 * On failure an error message is given and IObuff is returned (to avoid
2503 * having to check for error everywhere).
2504 */
2505 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002506ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507{
2508 return ml_get_buf(curbuf, lnum, FALSE);
2509}
2510
2511/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002512 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 */
2514 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002515ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002516{
2517 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2518}
2519
2520/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002521 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 */
2523 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002524ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525{
2526 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2527}
2528
2529/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002530 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 */
2532 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002533ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534{
2535 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2536 curwin->w_cursor.col);
2537}
2538
2539/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002540 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 *
2542 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2543 * changed)
2544 */
2545 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002546ml_get_buf(
2547 buf_T *buf,
2548 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002549 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002551 bhdr_T *hp;
2552 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002553 static int recursive = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002555 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002557 if (recursive == 0)
2558 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002559 // Avoid giving this message for a recursive call, may happen when
2560 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002561 ++recursive;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002562 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002563 --recursive;
2564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565errorret:
2566 STRCPY(IObuff, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002567 buf->b_ml.ml_line_len = 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 return IObuff;
2569 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002570 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 lnum = 1;
2572
Bram Moolenaaradfde112019-05-25 22:11:45 +02002573 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2574 {
2575 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002579 /*
2580 * See if it is the same line as requested last time.
2581 * Otherwise may need to flush last used line.
2582 * Don't use the last used line when 'swapfile' is reset, need to load all
2583 * blocks.
2584 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002585 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002587 unsigned start, end;
2588 colnr_T len;
2589 int idx;
2590
Bram Moolenaar071d4272004-06-13 20:20:40 +00002591 ml_flush_line(buf);
2592
2593 /*
2594 * Find the data block containing the line.
2595 * This also fills the stack with the blocks from the root to the data
2596 * block and releases any locked block.
2597 */
2598 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2599 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002600 if (recursive == 0)
2601 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002602 // Avoid giving this message for a recursive call, may happen
2603 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002604 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002605 get_trans_bufname(buf);
2606 shorten_dir(NameBuff);
2607 siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2608 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002609 --recursive;
2610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 goto errorret;
2612 }
2613
2614 dp = (DATA_BL *)(hp->bh_data);
2615
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002616 idx = lnum - buf->b_ml.ml_locked_low;
2617 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2618 // The text ends where the previous line starts. The first line ends
2619 // at the end of the block.
2620 if (idx == 0)
2621 end = dp->db_txt_end;
2622 else
2623 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2624 len = end - start;
2625
2626 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2627 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 buf->b_ml.ml_line_lnum = lnum;
2629 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2630 }
2631 if (will_change)
2632 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2633
2634 return buf->b_ml.ml_line_ptr;
2635}
2636
2637/*
2638 * Check if a line that was just obtained by a call to ml_get
2639 * is in allocated memory.
2640 */
2641 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002642ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643{
2644 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2645}
2646
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002647#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002648/*
2649 * Add text properties that continue from the previous line.
2650 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002651 static void
2652add_text_props_for_append(
2653 buf_T *buf,
2654 linenr_T lnum,
2655 char_u **line,
2656 int *len,
2657 char_u **tofree)
2658{
2659 int round;
2660 int new_prop_count = 0;
2661 int count;
2662 int n;
2663 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002664 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002665 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002666 textprop_T prop;
2667
2668 // Make two rounds:
2669 // 1. calculate the extra space needed
2670 // 2. allocate the space and fill it
2671 for (round = 1; round <= 2; ++round)
2672 {
2673 if (round == 2)
2674 {
2675 if (new_prop_count == 0)
2676 return; // nothing to do
2677 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002678 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002679 if (new_line == NULL)
2680 return;
2681 mch_memmove(new_line, *line, *len);
2682 new_prop_count = 0;
2683 }
2684
2685 // Get the line above to find any props that continue in the next
2686 // line.
2687 count = get_text_props(buf, lnum, &props, FALSE);
2688 for (n = 0; n < count; ++n)
2689 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002690 mch_memmove(&prop, props + n * sizeof(textprop_T),
2691 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002692 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2693 {
2694 if (round == 2)
2695 {
2696 prop.tp_flags |= TP_FLAG_CONT_PREV;
2697 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002698 prop.tp_len = *len; // not exactly the right length
2699 mch_memmove(new_line + *len + new_prop_count
2700 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002701 }
2702 ++new_prop_count;
2703 }
2704 }
2705 }
2706 *line = new_line;
2707 *tofree = new_line;
2708 *len = new_len;
2709}
2710#endif
2711
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002713ml_append_int(
2714 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002715 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002716 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002717 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002718 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002720 char_u *line = line_arg;
2721 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002723 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 int offset;
2725 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002726 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 int page_size;
2728 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002729 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 bhdr_T *hp;
2731 memfile_T *mfp;
2732 DATA_BL *dp;
2733 PTR_BL *pp;
2734 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002735#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002736 char_u *tofree = NULL;
2737#endif
2738 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002741 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742
2743 if (lowest_marked && lowest_marked > lnum)
2744 lowest_marked = lnum + 1;
2745
2746 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002747 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002748
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002749#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002750 if (curbuf->b_has_textprop && lnum > 0 && !(flags & ML_APPEND_UNDO))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002751 // Add text properties that continue from the previous line.
2752 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2753#endif
2754
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002755 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756
2757 mfp = buf->b_ml.ml_mfp;
2758 page_size = mfp->mf_page_size;
2759
2760/*
2761 * find the data block containing the previous line
2762 * This also fills the stack with the blocks from the root to the data block
2763 * This also releases any locked block.
2764 */
2765 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2766 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002767 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768
2769 buf->b_ml.ml_flags &= ~ML_EMPTY;
2770
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002771 if (lnum == 0) // got line one instead, correct db_idx
2772 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 else
2774 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002775 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2777
2778 dp = (DATA_BL *)(hp->bh_data);
2779
2780/*
2781 * If
2782 * - there is not enough room in the current block
2783 * - appending to the last line in the block
2784 * - not appending to the last line in the file
2785 * insert in front of the next block.
2786 */
2787 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2788 && lnum < buf->b_ml.ml_line_count)
2789 {
2790 /*
2791 * Now that the line is not going to be inserted in the block that we
2792 * expected, the line count has to be adjusted in the pointer blocks
2793 * by using ml_locked_lineadd.
2794 */
2795 --(buf->b_ml.ml_locked_lineadd);
2796 --(buf->b_ml.ml_locked_high);
2797 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002798 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002800 db_idx = -1; // careful, it is negative!
2801 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2803 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2804
2805 dp = (DATA_BL *)(hp->bh_data);
2806 }
2807
2808 ++buf->b_ml.ml_line_count;
2809
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002810 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002812 /*
2813 * Insert the new line in an existing data block, or in the data block
2814 * allocated above.
2815 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 dp->db_txt_start -= len;
2817 dp->db_free -= space_needed;
2818 ++(dp->db_line_count);
2819
2820 /*
2821 * move the text of the lines that follow to the front
2822 * adjust the indexes of the lines that follow
2823 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002824 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 {
2826 /*
2827 * Offset is the start of the previous line.
2828 * This will become the character just after the new line.
2829 */
2830 if (db_idx < 0)
2831 offset = dp->db_txt_end;
2832 else
2833 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2834 mch_memmove((char *)dp + dp->db_txt_start,
2835 (char *)dp + dp->db_txt_start + len,
2836 (size_t)(offset - (dp->db_txt_start + len)));
2837 for (i = line_count - 1; i > db_idx; --i)
2838 dp->db_index[i + 1] = dp->db_index[i] - len;
2839 dp->db_index[db_idx + 1] = offset - len;
2840 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002841 else
2842 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 dp->db_index[db_idx + 1] = dp->db_txt_start;
2844
2845 /*
2846 * copy the text into the block
2847 */
2848 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002849 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 dp->db_index[db_idx + 1] |= DB_MARKED;
2851
2852 /*
2853 * Mark the block dirty.
2854 */
2855 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002856 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2858 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002859 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 long line_count_left, line_count_right;
2862 int page_count_left, page_count_right;
2863 bhdr_T *hp_left;
2864 bhdr_T *hp_right;
2865 bhdr_T *hp_new;
2866 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002867 int data_moved = 0; // init to shut up gcc
2868 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 DATA_BL *dp_right, *dp_left;
2870 int stack_idx;
2871 int in_left;
2872 int lineadd;
2873 blocknr_T bnum_left, bnum_right;
2874 linenr_T lnum_left, lnum_right;
2875 int pb_idx;
2876 PTR_BL *pp_new;
2877
2878 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002879 * There is not enough room, we have to create a new data block and
2880 * copy some lines into it.
2881 * Then we have to insert an entry in the pointer block.
2882 * If this pointer block also is full, we go up another block, and so
2883 * on, up to the root if necessary.
2884 * The line counts in the pointer blocks have already been adjusted by
2885 * ml_find_line().
2886 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 * We are going to allocate a new data block. Depending on the
2888 * situation it will be put to the left or right of the existing
2889 * block. If possible we put the new line in the left block and move
2890 * the lines after it to the right block. Otherwise the new line is
2891 * also put in the right block. This method is more efficient when
2892 * inserting a lot of lines at one place.
2893 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002894 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 {
2896 lines_moved = 0;
2897 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002898 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002900 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901 {
2902 lines_moved = line_count - db_idx - 1;
2903 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002904 in_left = FALSE; // put new line in right block
2905 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906 else
2907 {
2908 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2909 dp->db_txt_start;
2910 total_moved = data_moved + lines_moved * INDEX_SIZE;
2911 if ((int)dp->db_free + total_moved >= space_needed)
2912 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002913 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 space_needed = total_moved;
2915 }
2916 else
2917 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002918 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002919 space_needed += total_moved;
2920 }
2921 }
2922 }
2923
2924 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002925 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
2926 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002928 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 --(buf->b_ml.ml_locked_lineadd);
2930 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002931 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002933 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002934 {
2935 hp_left = hp_new;
2936 hp_right = hp;
2937 line_count_left = 0;
2938 line_count_right = line_count;
2939 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002940 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 {
2942 hp_left = hp;
2943 hp_right = hp_new;
2944 line_count_left = line_count;
2945 line_count_right = 0;
2946 }
2947 dp_right = (DATA_BL *)(hp_right->bh_data);
2948 dp_left = (DATA_BL *)(hp_left->bh_data);
2949 bnum_left = hp_left->bh_bnum;
2950 bnum_right = hp_right->bh_bnum;
2951 page_count_left = hp_left->bh_page_count;
2952 page_count_right = hp_right->bh_page_count;
2953
2954 /*
2955 * May move the new line into the right/new block.
2956 */
2957 if (!in_left)
2958 {
2959 dp_right->db_txt_start -= len;
2960 dp_right->db_free -= len + INDEX_SIZE;
2961 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002962 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 dp_right->db_index[0] |= DB_MARKED;
2964
2965 mch_memmove((char *)dp_right + dp_right->db_txt_start,
2966 line, (size_t)len);
2967 ++line_count_right;
2968 }
2969 /*
2970 * may move lines from the left/old block to the right/new one.
2971 */
2972 if (lines_moved)
2973 {
2974 /*
2975 */
2976 dp_right->db_txt_start -= data_moved;
2977 dp_right->db_free -= total_moved;
2978 mch_memmove((char *)dp_right + dp_right->db_txt_start,
2979 (char *)dp_left + dp_left->db_txt_start,
2980 (size_t)data_moved);
2981 offset = dp_right->db_txt_start - dp_left->db_txt_start;
2982 dp_left->db_txt_start += data_moved;
2983 dp_left->db_free += total_moved;
2984
2985 /*
2986 * update indexes in the new block
2987 */
2988 for (to = line_count_right, from = db_idx + 1;
2989 from < line_count_left; ++from, ++to)
2990 dp_right->db_index[to] = dp->db_index[from] + offset;
2991 line_count_right += lines_moved;
2992 line_count_left -= lines_moved;
2993 }
2994
2995 /*
2996 * May move the new line into the left (old or new) block.
2997 */
2998 if (in_left)
2999 {
3000 dp_left->db_txt_start -= len;
3001 dp_left->db_free -= len + INDEX_SIZE;
3002 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003003 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 dp_left->db_index[line_count_left] |= DB_MARKED;
3005 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3006 line, (size_t)len);
3007 ++line_count_left;
3008 }
3009
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003010 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 {
3012 lnum_left = lnum + 1;
3013 lnum_right = 0;
3014 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003015 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 {
3017 lnum_left = 0;
3018 if (in_left)
3019 lnum_right = lnum + 2;
3020 else
3021 lnum_right = lnum + 1;
3022 }
3023 dp_left->db_line_count = line_count_left;
3024 dp_right->db_line_count = line_count_right;
3025
3026 /*
3027 * release the two data blocks
3028 * The new one (hp_new) already has a correct blocknumber.
3029 * The old one (hp, in ml_locked) gets a positive blocknumber if
3030 * we changed it and we are not editing a new file.
3031 */
3032 if (lines_moved || in_left)
3033 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003034 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3036 mf_put(mfp, hp_new, TRUE, FALSE);
3037
3038 /*
3039 * flush the old data block
3040 * set ml_locked_lineadd to 0, because the updating of the
3041 * pointer blocks is done below
3042 */
3043 lineadd = buf->b_ml.ml_locked_lineadd;
3044 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003045 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046
3047 /*
3048 * update pointer blocks for the new data block
3049 */
3050 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3051 --stack_idx)
3052 {
3053 ip = &(buf->b_ml.ml_stack[stack_idx]);
3054 pb_idx = ip->ip_index;
3055 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003056 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003057 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058 if (pp->pb_id != PTR_ID)
3059 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003060 iemsg(_("E317: pointer block id wrong 3"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003062 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 }
3064 /*
3065 * TODO: If the pointer block is full and we are adding at the end
3066 * try to insert in front of the next block
3067 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003068 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 if (pp->pb_count < pp->pb_count_max)
3070 {
3071 if (pb_idx + 1 < (int)pp->pb_count)
3072 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3073 &pp->pb_pointer[pb_idx + 1],
3074 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3075 ++pp->pb_count;
3076 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3077 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3078 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3079 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3080 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3081 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3082
3083 if (lnum_left != 0)
3084 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3085 if (lnum_right != 0)
3086 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3087
3088 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003089 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090
3091 if (lineadd)
3092 {
3093 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003094 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003096 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3098 lineadd;
3099 ++(buf->b_ml.ml_stack_top);
3100 }
3101
3102 /*
3103 * We are finished, break the loop here.
3104 */
3105 break;
3106 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003107 else // pointer block full
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 {
3109 /*
3110 * split the pointer block
3111 * allocate a new pointer block
3112 * move some of the pointer into the new block
3113 * prepare for updating the parent block
3114 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003115 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 {
3117 hp_new = ml_new_ptr(mfp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003118 if (hp_new == NULL) // TODO: try to fix tree
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003119 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 pp_new = (PTR_BL *)(hp_new->bh_data);
3121
3122 if (hp->bh_bnum != 1)
3123 break;
3124
3125 /*
3126 * if block 1 becomes full the tree is given an extra level
3127 * The pointers from block 1 are moved into the new block.
3128 * block 1 is updated to point to the new block
3129 * then continue to split the new block
3130 */
3131 mch_memmove(pp_new, pp, (size_t)page_size);
3132 pp->pb_count = 1;
3133 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3134 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3135 pp->pb_pointer[0].pe_old_lnum = 1;
3136 pp->pb_pointer[0].pe_page_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003137 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3138 hp = hp_new; // new block is to be split
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 pp = pp_new;
3140 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3141 ip->ip_index = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003142 ++stack_idx; // do block 1 again later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 }
3144 /*
3145 * move the pointers after the current one to the new block
3146 * If there are none, the new entry will be in the new block.
3147 */
3148 total_moved = pp->pb_count - pb_idx - 1;
3149 if (total_moved)
3150 {
3151 mch_memmove(&pp_new->pb_pointer[0],
3152 &pp->pb_pointer[pb_idx + 1],
3153 (size_t)(total_moved) * sizeof(PTR_EN));
3154 pp_new->pb_count = total_moved;
3155 pp->pb_count -= total_moved - 1;
3156 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3157 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3158 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3159 if (lnum_right)
3160 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3161 }
3162 else
3163 {
3164 pp_new->pb_count = 1;
3165 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3166 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3167 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3168 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3169 }
3170 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3171 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3172 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3173 if (lnum_left)
3174 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3175 lnum_left = 0;
3176 lnum_right = 0;
3177
3178 /*
3179 * recompute line counts
3180 */
3181 line_count_right = 0;
3182 for (i = 0; i < (int)pp_new->pb_count; ++i)
3183 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3184 line_count_left = 0;
3185 for (i = 0; i < (int)pp->pb_count; ++i)
3186 line_count_left += pp->pb_pointer[i].pe_line_count;
3187
3188 bnum_left = hp->bh_bnum;
3189 bnum_right = hp_new->bh_bnum;
3190 page_count_left = 1;
3191 page_count_right = 1;
3192 mf_put(mfp, hp, TRUE, FALSE);
3193 mf_put(mfp, hp_new, TRUE, FALSE);
3194 }
3195 }
3196
3197 /*
3198 * Safety check: fallen out of for loop?
3199 */
3200 if (stack_idx < 0)
3201 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003202 iemsg(_("E318: Updated too many blocks?"));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003203 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 }
3205 }
3206
3207#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003208 // The line was inserted below 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3210#endif
3211#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003212 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 {
3214 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003215 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003216 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 (char_u *)"\n", 1);
3218 }
3219#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003220#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003221 if (buf->b_write_to_channel)
3222 channel_write_new_lines(buf);
3223#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003224 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003225
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003226theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003227#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003228 vim_free(tofree);
3229#endif
3230 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231}
3232
3233/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003234 * Flush any pending change and call ml_append_int()
3235 */
3236 static int
3237ml_append_flush(
3238 buf_T *buf,
3239 linenr_T lnum, // append after this line (can be 0)
3240 char_u *line, // text of the new line
3241 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003242 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003243{
3244 if (lnum > buf->b_ml.ml_line_count)
3245 return FAIL; // lnum out of range
3246
3247 if (buf->b_ml.ml_line_lnum != 0)
3248 // This may also invoke ml_append_int().
3249 ml_flush_line(buf);
3250
3251#ifdef FEAT_EVAL
3252 // When inserting above recorded changes: flush the changes before changing
3253 // the text. Then flush the cached line, it may become invalid.
3254 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3255 if (buf->b_ml.ml_line_lnum != 0)
3256 ml_flush_line(buf);
3257#endif
3258
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003259 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003260}
3261
3262/*
3263 * Append a line after lnum (may be 0 to insert a line in front of the file).
3264 * "line" does not need to be allocated, but can't be another line in a
3265 * buffer, unlocking may make it invalid.
3266 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003267 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003268 * will be set for recovery
3269 * Check: The caller of this function should probably also call
3270 * appended_lines().
3271 *
3272 * return FAIL for failure, OK otherwise
3273 */
3274 int
3275ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003276 linenr_T lnum, // append after this line (can be 0)
3277 char_u *line, // text of the new line
3278 colnr_T len, // length of new line, including NUL, or 0
3279 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003280{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003281 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3282}
3283
3284 int
3285ml_append_flags(
3286 linenr_T lnum, // append after this line (can be 0)
3287 char_u *line, // text of the new line
3288 colnr_T len, // length of new line, including NUL, or 0
3289 int flags) // ML_APPEND_ values
3290{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003291 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003292 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3293 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003294 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003295}
3296
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003297
Bram Moolenaar250e3112019-07-15 23:02:14 +02003298#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3299/*
3300 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3301 * a memline.
3302 */
3303 int
3304ml_append_buf(
3305 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003306 linenr_T lnum, // append after this line (can be 0)
3307 char_u *line, // text of the new line
3308 colnr_T len, // length of new line, including NUL, or 0
3309 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003310{
3311 if (buf->b_ml.ml_mfp == NULL)
3312 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003313 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003314}
3315#endif
3316
3317/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003318 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003320 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003322 * If "copy" is FALSE the "line" may be freed to add text properties!
3323 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 *
3325 * Check: The caller of this function should probably also call
3326 * changed_lines(), unless update_screen(NOT_VALID) is used.
3327 *
3328 * return FAIL for failure, OK otherwise
3329 */
3330 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003331ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003333 colnr_T len = -1;
3334
3335 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003336 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003337 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003338}
3339
Bram Moolenaarccae4672019-01-04 15:09:57 +01003340/*
3341 * Replace a line for the current buffer. Like ml_replace() with:
3342 * "len_arg" is the length of the text, excluding NUL.
3343 * If "has_props" is TRUE then "line_arg" includes the text properties and
3344 * "len_arg" includes the NUL of the text.
3345 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003346 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003347ml_replace_len(
3348 linenr_T lnum,
3349 char_u *line_arg,
3350 colnr_T len_arg,
3351 int has_props,
3352 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003353{
3354 char_u *line = line_arg;
3355 colnr_T len = len_arg;
3356
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003357 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 return FAIL;
3359
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003360 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003361 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 return FAIL;
3363
Bram Moolenaarccae4672019-01-04 15:09:57 +01003364 if (!has_props)
3365 ++len; // include the NUL after the text
3366 if (copy)
3367 {
3368 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003369#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003370 if (has_props)
3371 line = vim_memsave(line, len);
3372 else
3373#endif
3374 line = vim_strnsave(line, len - 1);
3375 if (line == NULL)
3376 return FAIL;
3377 }
3378
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003380 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 {
3382 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003383 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 }
3385#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003386 if (curbuf->b_ml.ml_line_lnum != lnum)
3387 {
3388 // another line is buffered, flush it
3389 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003390 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003391
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003392#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003393 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003394 // Need to fetch the old line to copy over any text properties.
3395 ml_get_buf(curbuf, lnum, TRUE);
3396#endif
3397 }
3398
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003399#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003400 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003401 {
3402 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3403
3404 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3405 {
3406 char_u *newline;
3407 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3408
3409 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003410 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003411 if (newline != NULL)
3412 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003413 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003414 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3415 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003416 vim_free(line);
3417 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003418 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003419 }
3420 }
3421 }
3422#endif
3423
Bram Moolenaarccae4672019-01-04 15:09:57 +01003424 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3425 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003426
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003428 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 curbuf->b_ml.ml_line_lnum = lnum;
3430 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3431
3432 return OK;
3433}
3434
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003435#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003436/*
3437 * Adjust text properties in line "lnum" for a deleted line.
3438 * When "above" is true this is the line above the deleted line.
3439 * "del_props" are the properties of the deleted line.
3440 */
3441 static void
3442adjust_text_props_for_delete(
3443 buf_T *buf,
3444 linenr_T lnum,
3445 char_u *del_props,
3446 int del_props_len,
3447 int above)
3448{
3449 int did_get_line = FALSE;
3450 int done_del;
3451 int done_this;
3452 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003453 bhdr_T *hp;
3454 DATA_BL *dp;
3455 int idx;
3456 int line_start;
3457 long line_size;
3458 int this_props_len;
3459 char_u *text;
3460 size_t textlen;
3461 int found;
3462
3463 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3464 {
3465 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3466 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3467 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3468 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3469 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3470 {
3471 if (!did_get_line)
3472 {
3473 did_get_line = TRUE;
3474 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3475 return;
3476
3477 dp = (DATA_BL *)(hp->bh_data);
3478 idx = lnum - buf->b_ml.ml_locked_low;
3479 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3480 if (idx == 0) // first line in block, text at the end
3481 line_size = dp->db_txt_end - line_start;
3482 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003483 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3484 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003485 text = (char_u *)dp + line_start;
3486 textlen = STRLEN(text) + 1;
3487 if ((long)textlen >= line_size)
3488 {
3489 if (above)
3490 internal_error("no text property above deleted line");
3491 else
3492 internal_error("no text property below deleted line");
3493 return;
3494 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003495 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003496 }
3497
3498 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003499 for (done_this = 0; done_this < this_props_len;
3500 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003501 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003502 int flag = above ? TP_FLAG_CONT_NEXT
3503 : TP_FLAG_CONT_PREV;
3504 textprop_T prop_this;
3505
3506 mch_memmove(&prop_this, text + textlen + done_del,
3507 sizeof(textprop_T));
3508 if ((prop_this.tp_flags & flag)
3509 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003510 && prop_del.tp_type == prop_this.tp_type)
3511 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003512 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003513 prop_this.tp_flags &= ~flag;
3514 mch_memmove(text + textlen + done_del, &prop_this,
3515 sizeof(textprop_T));
3516 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003517 }
3518 }
3519 if (!found)
3520 {
3521 if (above)
3522 internal_error("text property above deleted line not found");
3523 else
3524 internal_error("text property below deleted line not found");
3525 }
3526
3527 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3528 }
3529 }
3530}
3531#endif
3532
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003534 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003535 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3536 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537 *
3538 * return FAIL for failure, OK otherwise
3539 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003541ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542{
3543 bhdr_T *hp;
3544 memfile_T *mfp;
3545 DATA_BL *dp;
3546 PTR_BL *pp;
3547 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003548 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 int idx;
3550 int stack_idx;
3551 int text_start;
3552 int line_start;
3553 long line_size;
3554 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003555 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003556#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003557 char_u *textprop_save = NULL;
3558 int textprop_save_len;
3559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 if (lowest_marked && lowest_marked > lnum)
3562 lowest_marked--;
3563
3564/*
3565 * If the file becomes empty the last line is replaced by an empty line.
3566 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003567 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003569 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003570#ifdef FEAT_NETBEANS_INTG
3571 && !netbeansSuppressNoLines
3572#endif
3573 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003574 set_keep_msg((char_u *)_(no_lines_msg), 0);
3575
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003576 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3578 buf->b_ml.ml_flags |= ML_EMPTY;
3579
3580 return i;
3581 }
3582
3583/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003584 * Find the data block containing the line.
3585 * This also fills the stack with the blocks from the root to the data block.
3586 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 */
3588 mfp = buf->b_ml.ml_mfp;
3589 if (mfp == NULL)
3590 return FAIL;
3591
3592 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3593 return FAIL;
3594
3595 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003596 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 count = (long)(buf->b_ml.ml_locked_high)
3598 - (long)(buf->b_ml.ml_locked_low) + 2;
3599 idx = lnum - buf->b_ml.ml_locked_low;
3600
3601 --buf->b_ml.ml_line_count;
3602
3603 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003604 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605 line_size = dp->db_txt_end - line_start;
3606 else
3607 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3608
3609#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003610 if (netbeans_active())
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003611 netbeans_removed(buf, lnum, 0, (long)line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003613#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003614 // If there are text properties, make a copy, so that we can update
3615 // properties in preceding and following lines.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003616 if (buf->b_has_textprop && !(flags & ML_DEL_UNDO))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003617 {
3618 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3619
3620 if ((long)textlen < line_size)
3621 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003622 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003623 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3624 textprop_save_len);
3625 }
3626 }
3627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628
3629/*
3630 * special case: If there is only one line in the data block it becomes empty.
3631 * Then we have to remove the entry, pointing to this data block, from the
3632 * pointer block. If this pointer block also becomes empty, we go up another
3633 * block, and so on, up to the root if necessary.
3634 * The line counts in the pointer blocks have already been adjusted by
3635 * ml_find_line().
3636 */
3637 if (count == 1)
3638 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003639 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 buf->b_ml.ml_locked = NULL;
3641
Bram Moolenaare60acc12011-05-10 16:41:25 +02003642 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3643 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003645 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 ip = &(buf->b_ml.ml_stack[stack_idx]);
3647 idx = ip->ip_index;
3648 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003649 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003650 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 if (pp->pb_id != PTR_ID)
3652 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003653 iemsg(_("E317: pointer block id wrong 4"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003655 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 }
3657 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003658 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 mf_free(mfp, hp);
3660 else
3661 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003662 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3664 (size_t)(count - idx) * sizeof(PTR_EN));
3665 mf_put(mfp, hp, TRUE, FALSE);
3666
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003667 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3668 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003669 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 {
3671 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3672 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003673 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 }
3675 ++(buf->b_ml.ml_stack_top);
3676
3677 break;
3678 }
3679 }
3680 CHECK(stack_idx < 0, _("deleted block 1?"));
3681 }
3682 else
3683 {
3684 /*
3685 * delete the text by moving the next lines forwards
3686 */
3687 text_start = dp->db_txt_start;
3688 mch_memmove((char *)dp + text_start + line_size,
3689 (char *)dp + text_start, (size_t)(line_start - text_start));
3690
3691 /*
3692 * delete the index by moving the next indexes backwards
3693 * Adjust the indexes for the text movement.
3694 */
3695 for (i = idx; i < count - 1; ++i)
3696 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3697
3698 dp->db_free += line_size + INDEX_SIZE;
3699 dp->db_txt_start += line_size;
3700 --(dp->db_line_count);
3701
3702 /*
3703 * mark the block dirty and make sure it is in the file (for recovery)
3704 */
3705 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3706 }
3707
3708#ifdef FEAT_BYTEOFF
3709 ml_updatechunk(buf, lnum, line_size, ML_CHNK_DELLINE);
3710#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003711 ret = OK;
3712
3713theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003714#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003715 if (textprop_save != NULL)
3716 {
3717 // Adjust text properties in the line above and below.
3718 if (lnum > 1)
3719 adjust_text_props_for_delete(buf, lnum - 1, textprop_save, textprop_save_len, TRUE);
3720 if (lnum <= buf->b_ml.ml_line_count)
3721 adjust_text_props_for_delete(buf, lnum, textprop_save, textprop_save_len, FALSE);
3722 }
3723 vim_free(textprop_save);
3724#endif
3725 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726}
3727
3728/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003729 * Delete line "lnum" in the current buffer.
3730 * When "message" is TRUE may give a "No lines in buffer" message.
3731 *
3732 * Check: The caller of this function should probably also call
3733 * deleted_lines() after this.
3734 *
3735 * return FAIL for failure, OK otherwise
3736 */
3737 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003738ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003739{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003740 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003741}
3742
3743/*
3744 * Like ml_delete() but using flags (see ml_delete_int()).
3745 */
3746 int
3747ml_delete_flags(linenr_T lnum, int flags)
3748{
3749 ml_flush_line(curbuf);
3750 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3751 return FAIL;
3752
3753#ifdef FEAT_EVAL
3754 // When inserting above recorded changes: flush the changes before changing
3755 // the text.
3756 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3757#endif
3758
3759 return ml_delete_int(curbuf, lnum, flags);
3760}
3761
3762/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003763 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 */
3765 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003766ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767{
3768 bhdr_T *hp;
3769 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003770 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3772 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003773 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774
3775 if (lowest_marked == 0 || lowest_marked > lnum)
3776 lowest_marked = lnum;
3777
3778 /*
3779 * find the data block containing the line
3780 * This also fills the stack with the blocks from the root to the data block
3781 * This also releases any locked block.
3782 */
3783 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003784 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785
3786 dp = (DATA_BL *)(hp->bh_data);
3787 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3788 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3789}
3790
3791/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003792 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 */
3794 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003795ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796{
3797 bhdr_T *hp;
3798 DATA_BL *dp;
3799 linenr_T lnum;
3800 int i;
3801
3802 if (curbuf->b_ml.ml_mfp == NULL)
3803 return (linenr_T) 0;
3804
3805 /*
3806 * The search starts with lowest_marked line. This is the last line where
3807 * a mark was found, adjusted by inserting/deleting lines.
3808 */
3809 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3810 {
3811 /*
3812 * Find the data block containing the line.
3813 * This also fills the stack with the blocks from the root to the data
3814 * block This also releases any locked block.
3815 */
3816 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003817 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818
3819 dp = (DATA_BL *)(hp->bh_data);
3820
3821 for (i = lnum - curbuf->b_ml.ml_locked_low;
3822 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3823 if ((dp->db_index[i]) & DB_MARKED)
3824 {
3825 (dp->db_index[i]) &= DB_INDEX_MASK;
3826 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3827 lowest_marked = lnum + 1;
3828 return lnum;
3829 }
3830 }
3831
3832 return (linenr_T) 0;
3833}
3834
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835/*
3836 * clear all DB_MARKED flags
3837 */
3838 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003839ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840{
3841 bhdr_T *hp;
3842 DATA_BL *dp;
3843 linenr_T lnum;
3844 int i;
3845
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003846 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 return;
3848
3849 /*
3850 * The search starts with line lowest_marked.
3851 */
3852 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3853 {
3854 /*
3855 * Find the data block containing the line.
3856 * This also fills the stack with the blocks from the root to the data
3857 * block and releases any locked block.
3858 */
3859 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003860 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861
3862 dp = (DATA_BL *)(hp->bh_data);
3863
3864 for (i = lnum - curbuf->b_ml.ml_locked_low;
3865 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3866 if ((dp->db_index[i]) & DB_MARKED)
3867 {
3868 (dp->db_index[i]) &= DB_INDEX_MASK;
3869 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3870 }
3871 }
3872
3873 lowest_marked = 0;
3874 return;
3875}
3876
3877/*
3878 * flush ml_line if necessary
3879 */
3880 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003881ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882{
3883 bhdr_T *hp;
3884 DATA_BL *dp;
3885 linenr_T lnum;
3886 char_u *new_line;
3887 char_u *old_line;
3888 colnr_T new_len;
3889 int old_len;
3890 int extra;
3891 int idx;
3892 int start;
3893 int count;
3894 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003895 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896
3897 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003898 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899
3900 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3901 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003902 // This code doesn't work recursively, but Netbeans may call back here
3903 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003904 if (entered)
3905 return;
3906 entered = TRUE;
3907
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908 lnum = buf->b_ml.ml_line_lnum;
3909 new_line = buf->b_ml.ml_line_ptr;
3910
3911 hp = ml_find_line(buf, lnum, ML_FIND);
3912 if (hp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003913 siemsg(_("E320: Cannot find line %ld"), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 else
3915 {
3916 dp = (DATA_BL *)(hp->bh_data);
3917 idx = lnum - buf->b_ml.ml_locked_low;
3918 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3919 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003920 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003922 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003924 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003925 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926
3927 /*
3928 * if new line fits in data block, replace directly
3929 */
3930 if ((int)dp->db_free >= extra)
3931 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003932 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
3934 if (extra != 0 && idx < count - 1)
3935 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003936 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 mch_memmove((char *)dp + dp->db_txt_start - extra,
3938 (char *)dp + dp->db_txt_start,
3939 (size_t)(start - dp->db_txt_start));
3940
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003941 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 for (i = idx + 1; i < count; ++i)
3943 dp->db_index[i] -= extra;
3944 }
3945 dp->db_index[idx] -= extra;
3946
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003947 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 dp->db_free -= extra;
3949 dp->db_txt_start -= extra;
3950
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003951 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 mch_memmove(old_line - extra, new_line, (size_t)new_len);
3953 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3954#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003955 // The else case is already covered by the insert and delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
3957#endif
3958 }
3959 else
3960 {
3961 /*
3962 * Cannot do it in one data block: Delete and append.
3963 * Append first, because ml_delete_int() cannot delete the
3964 * last line in a buffer, which causes trouble for a buffer
3965 * that has only one line.
3966 * Don't forget to copy the mark!
3967 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003968 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003969 (void)ml_append_int(buf, lnum, new_line, new_len,
3970 (dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0);
3971 (void)ml_delete_int(buf, lnum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 }
3973 }
3974 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003975
3976 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 }
3978
3979 buf->b_ml.ml_line_lnum = 0;
3980}
3981
3982/*
3983 * create a new, empty, data block
3984 */
3985 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003986ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987{
3988 bhdr_T *hp;
3989 DATA_BL *dp;
3990
3991 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
3992 return NULL;
3993
3994 dp = (DATA_BL *)(hp->bh_data);
3995 dp->db_id = DATA_ID;
3996 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
3997 dp->db_free = dp->db_txt_start - HEADER_SIZE;
3998 dp->db_line_count = 0;
3999
4000 return hp;
4001}
4002
4003/*
4004 * create a new, empty, pointer block
4005 */
4006 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004007ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008{
4009 bhdr_T *hp;
4010 PTR_BL *pp;
4011
4012 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4013 return NULL;
4014
4015 pp = (PTR_BL *)(hp->bh_data);
4016 pp->pb_id = PTR_ID;
4017 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004018 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4019 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020
4021 return hp;
4022}
4023
4024/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004025 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 *
4027 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4028 * if ML_FLUSH only flush a locked block
4029 * if ML_FIND just find the line
4030 *
4031 * If the block was found it is locked and put in ml_locked.
4032 * The stack is updated to lead to the locked block. The ip_high field in
4033 * the stack is updated to reflect the last line in the block AFTER the
4034 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004035 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 *
4037 * return: NULL for failure, pointer to block header otherwise
4038 */
4039 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004040ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041{
4042 DATA_BL *dp;
4043 PTR_BL *pp;
4044 infoptr_T *ip;
4045 bhdr_T *hp;
4046 memfile_T *mfp;
4047 linenr_T t;
4048 blocknr_T bnum, bnum2;
4049 int dirty;
4050 linenr_T low, high;
4051 int top;
4052 int page_count;
4053 int idx;
4054
4055 mfp = buf->b_ml.ml_mfp;
4056
4057 /*
4058 * If there is a locked block check if the wanted line is in it.
4059 * If not, flush and release the locked block.
4060 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4061 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004062 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 */
4064 if (buf->b_ml.ml_locked)
4065 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004066 if (ML_SIMPLE(action)
4067 && buf->b_ml.ml_locked_low <= lnum
4068 && buf->b_ml.ml_locked_high >= lnum
4069 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004071 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072 if (action == ML_INSERT)
4073 {
4074 ++(buf->b_ml.ml_locked_lineadd);
4075 ++(buf->b_ml.ml_locked_high);
4076 }
4077 else if (action == ML_DELETE)
4078 {
4079 --(buf->b_ml.ml_locked_lineadd);
4080 --(buf->b_ml.ml_locked_high);
4081 }
4082 return (buf->b_ml.ml_locked);
4083 }
4084
4085 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4086 buf->b_ml.ml_flags & ML_LOCKED_POS);
4087 buf->b_ml.ml_locked = NULL;
4088
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004089 /*
4090 * If lines have been added or deleted in the locked block, need to
4091 * update the line count in pointer blocks.
4092 */
4093 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4095 }
4096
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004097 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 return NULL;
4099
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004100 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 page_count = 1;
4102 low = 1;
4103 high = buf->b_ml.ml_line_count;
4104
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004105 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 {
4107 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4108 {
4109 ip = &(buf->b_ml.ml_stack[top]);
4110 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4111 {
4112 bnum = ip->ip_bnum;
4113 low = ip->ip_low;
4114 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004115 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 break;
4117 }
4118 }
4119 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004120 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004122 else // ML_DELETE or ML_INSERT
4123 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124
4125/*
4126 * search downwards in the tree until a data block is found
4127 */
4128 for (;;)
4129 {
4130 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4131 goto error_noblock;
4132
4133 /*
4134 * update high for insert/delete
4135 */
4136 if (action == ML_INSERT)
4137 ++high;
4138 else if (action == ML_DELETE)
4139 --high;
4140
4141 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004142 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 {
4144 buf->b_ml.ml_locked = hp;
4145 buf->b_ml.ml_locked_low = low;
4146 buf->b_ml.ml_locked_high = high;
4147 buf->b_ml.ml_locked_lineadd = 0;
4148 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4149 return hp;
4150 }
4151
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004152 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 if (pp->pb_id != PTR_ID)
4154 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004155 iemsg(_("E317: pointer block id wrong"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 goto error_block;
4157 }
4158
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004159 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 goto error_block;
4161 ip = &(buf->b_ml.ml_stack[top]);
4162 ip->ip_bnum = bnum;
4163 ip->ip_low = low;
4164 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004165 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166
4167 dirty = FALSE;
4168 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4169 {
4170 t = pp->pb_pointer[idx].pe_line_count;
4171 CHECK(t == 0, _("pe_line_count is zero"));
4172 if ((low += t) > lnum)
4173 {
4174 ip->ip_index = idx;
4175 bnum = pp->pb_pointer[idx].pe_bnum;
4176 page_count = pp->pb_pointer[idx].pe_page_count;
4177 high = low - 1;
4178 low -= t;
4179
4180 /*
4181 * a negative block number may have been changed
4182 */
4183 if (bnum < 0)
4184 {
4185 bnum2 = mf_trans_del(mfp, bnum);
4186 if (bnum != bnum2)
4187 {
4188 bnum = bnum2;
4189 pp->pb_pointer[idx].pe_bnum = bnum;
4190 dirty = TRUE;
4191 }
4192 }
4193
4194 break;
4195 }
4196 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004197 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 {
4199 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004200 siemsg(_("E322: line number out of range: %ld past the end"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004201 lnum - buf->b_ml.ml_line_count);
4202
4203 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004204 siemsg(_("E323: line count wrong in block %ld"), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 goto error_block;
4206 }
4207 if (action == ML_DELETE)
4208 {
4209 pp->pb_pointer[idx].pe_line_count--;
4210 dirty = TRUE;
4211 }
4212 else if (action == ML_INSERT)
4213 {
4214 pp->pb_pointer[idx].pe_line_count++;
4215 dirty = TRUE;
4216 }
4217 mf_put(mfp, hp, dirty, FALSE);
4218 }
4219
4220error_block:
4221 mf_put(mfp, hp, FALSE, FALSE);
4222error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004223 /*
4224 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4225 * the incremented/decremented line counts, because there won't be a line
4226 * inserted/deleted after all.
4227 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 if (action == ML_DELETE)
4229 ml_lineadd(buf, 1);
4230 else if (action == ML_INSERT)
4231 ml_lineadd(buf, -1);
4232 buf->b_ml.ml_stack_top = 0;
4233 return NULL;
4234}
4235
4236/*
4237 * add an entry to the info pointer stack
4238 *
4239 * return -1 for failure, number of the new entry otherwise
4240 */
4241 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004242ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243{
4244 int top;
4245 infoptr_T *newstack;
4246
4247 top = buf->b_ml.ml_stack_top;
4248
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004249 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 if (top == buf->b_ml.ml_stack_size)
4251 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004252 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004254 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 if (newstack == NULL)
4256 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004257 if (top > 0)
4258 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004259 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 vim_free(buf->b_ml.ml_stack);
4261 buf->b_ml.ml_stack = newstack;
4262 buf->b_ml.ml_stack_size += STACK_INCR;
4263 }
4264
4265 buf->b_ml.ml_stack_top++;
4266 return top;
4267}
4268
4269/*
4270 * Update the pointer blocks on the stack for inserted/deleted lines.
4271 * The stack itself is also updated.
4272 *
4273 * When a insert/delete line action fails, the line is not inserted/deleted,
4274 * but the pointer blocks have already been updated. That is fixed here by
4275 * walking through the stack.
4276 *
4277 * Count is the number of lines added, negative if lines have been deleted.
4278 */
4279 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004280ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281{
4282 int idx;
4283 infoptr_T *ip;
4284 PTR_BL *pp;
4285 memfile_T *mfp = buf->b_ml.ml_mfp;
4286 bhdr_T *hp;
4287
4288 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4289 {
4290 ip = &(buf->b_ml.ml_stack[idx]);
4291 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4292 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004293 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 if (pp->pb_id != PTR_ID)
4295 {
4296 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004297 iemsg(_("E317: pointer block id wrong 2"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 break;
4299 }
4300 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4301 ip->ip_high += count;
4302 mf_put(mfp, hp, TRUE, FALSE);
4303 }
4304}
4305
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004306#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004307/*
4308 * Resolve a symlink in the last component of a file name.
4309 * Note that f_resolve() does it for every part of the path, we don't do that
4310 * here.
4311 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4312 * Otherwise returns FAIL.
4313 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004314 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004315resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004316{
4317 char_u tmp[MAXPATHL];
4318 int ret;
4319 int depth = 0;
4320
4321 if (fname == NULL)
4322 return FAIL;
4323
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004324 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004325 vim_strncpy(tmp, fname, MAXPATHL - 1);
4326
4327 for (;;)
4328 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004329 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004330 if (++depth == 100)
4331 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004332 semsg(_("E773: Symlink loop for \"%s\""), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004333 return FAIL;
4334 }
4335
4336 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4337 if (ret <= 0)
4338 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004339 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004340 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004341 // Found non-symlink or not existing file, stop here.
4342 // When at the first level use the unmodified name, skip the
4343 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004344 if (depth == 1)
4345 return FAIL;
4346
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004347 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004348 break;
4349 }
4350
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004351 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004352 return FAIL;
4353 }
4354 buf[ret] = NUL;
4355
4356 /*
4357 * Check whether the symlink is relative or absolute.
4358 * If it's relative, build a new path based on the directory
4359 * portion of the filename (if any) and the path the symlink
4360 * points to.
4361 */
4362 if (mch_isFullName(buf))
4363 STRCPY(tmp, buf);
4364 else
4365 {
4366 char_u *tail;
4367
4368 tail = gettail(tmp);
4369 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4370 return FAIL;
4371 STRCPY(tail, buf);
4372 }
4373 }
4374
4375 /*
4376 * Try to resolve the full name of the file so that the swapfile name will
4377 * be consistent even when opening a relative symlink from different
4378 * working directories.
4379 */
4380 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4381}
4382#endif
4383
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004385 * Make swap file name out of the file name and a directory name.
4386 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004388 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004389makeswapname(
4390 char_u *fname,
4391 char_u *ffname UNUSED,
4392 buf_T *buf,
4393 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394{
4395 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004396 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004397#ifdef HAVE_READLINK
4398 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004399
4400 // Expand symlink in the file name, so that we put the swap file with the
4401 // actual file instead of with the symlink.
4402 if (resolve_symlink(fname, fname_buf) == OK)
4403 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004404#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405
Bram Moolenaar4f974752019-02-17 17:44:42 +01004406#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004407 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004408
4409 s = dir_name + len;
4410 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004411 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004413 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 {
4415 r = modname(s, (char_u *)".swp", FALSE);
4416 vim_free(s);
4417 }
4418 return r;
4419 }
4420#endif
4421
4422 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004424 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004426#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 "_swp",
4428#else
4429 ".swp",
4430#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004431 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004432 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004433 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 return NULL;
4435
4436 s = get_file_in_dir(r, dir_name);
4437 vim_free(r);
4438 return s;
4439}
4440
4441/*
4442 * Get file name to use for swap file or backup file.
4443 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4444 * option "dname".
4445 * - If "dname" is ".", return "fname" (swap file in dir of file).
4446 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4447 * relative to dir of file).
4448 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4449 * dir).
4450 *
4451 * The return value is an allocated string and can be NULL.
4452 */
4453 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004454get_file_in_dir(
4455 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004456 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457{
4458 char_u *t;
4459 char_u *tail;
4460 char_u *retval;
4461 int save_char;
4462
4463 tail = gettail(fname);
4464
4465 if (dname[0] == '.' && dname[1] == NUL)
4466 retval = vim_strsave(fname);
4467 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4468 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004469 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 retval = concat_fnames(dname + 2, tail, TRUE);
4471 else
4472 {
4473 save_char = *tail;
4474 *tail = NUL;
4475 t = concat_fnames(fname, dname + 2, TRUE);
4476 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004477 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 retval = NULL;
4479 else
4480 {
4481 retval = concat_fnames(t, tail, TRUE);
4482 vim_free(t);
4483 }
4484 }
4485 }
4486 else
4487 retval = concat_fnames(dname, tail, TRUE);
4488
Bram Moolenaar4f974752019-02-17 17:44:42 +01004489#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004490 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004491 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004492 if (*t == ':')
4493 *t = '%';
4494#endif
4495
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 return retval;
4497}
4498
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004499/*
4500 * Print the ATTENTION message: info about an existing swap file.
4501 */
4502 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004503attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004504 buf_T *buf, // buffer being edited
4505 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004506{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004507 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004508 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004509
4510 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004511 (void)emsg(_("E325: ATTENTION"));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004512 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004513 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004514 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004515 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004516 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004517 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004518 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004519 if (mch_stat((char *)buf->b_fname, &st) == -1)
4520 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004521 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004522 }
4523 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004524 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004525 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004526 msg_puts(get_ctime(st.st_mtime, TRUE));
4527 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004528 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004529 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004530 // Some of these messages are long to allow translation to
4531 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004532 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"));
4533 msg_puts(_("(2) An edit session for this file crashed.\n"));
4534 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004535 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004536 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4537 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004538 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004539 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004540 cmdline_row = msg_row;
4541 --no_wait_return;
4542}
4543
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004544#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004545/*
4546 * Trigger the SwapExists autocommands.
4547 * Returns a value for equivalent to do_dialog() (see below):
4548 * 0: still need to ask for a choice
4549 * 1: open read-only
4550 * 2: edit anyway
4551 * 3: recover
4552 * 4: delete it
4553 * 5: quit
4554 * 6: abort
4555 */
4556 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004557do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004558{
4559 set_vim_var_string(VV_SWAPNAME, fname, -1);
4560 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4561
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004562 // Trigger SwapExists autocommands with <afile> set to the file being
4563 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004564 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004565 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004566 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004567
4568 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4569
4570 switch (*get_vim_var_str(VV_SWAPCHOICE))
4571 {
4572 case 'o': return 1;
4573 case 'e': return 2;
4574 case 'r': return 3;
4575 case 'd': return 4;
4576 case 'q': return 5;
4577 case 'a': return 6;
4578 }
4579
4580 return 0;
4581}
4582#endif
4583
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584/*
4585 * Find out what name to use for the swap file for buffer 'buf'.
4586 *
4587 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004588 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004589 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 *
4591 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004592 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004593 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 */
4595 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004596findswapname(
4597 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004598 char_u **dirp, // pointer to list of directories
4599 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600{
4601 char_u *fname;
4602 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603 char_u *dir_name;
4604#ifdef AMIGA
4605 BPTR fh;
4606#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004608 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004610#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611# define CREATE_DUMMY_FILE
4612 FILE *dummyfd = NULL;
4613
Bram Moolenaar4f974752019-02-17 17:44:42 +01004614# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004615 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4616 && vim_strchr(gettail(buf_fname), ':'))
4617 {
4618 char_u *t;
4619
4620 buf_fname = vim_strsave(buf_fname);
4621 if (buf_fname == NULL)
4622 buf_fname = buf->b_fname;
4623 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004624 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004625 if (*t == ':')
4626 *t = '%';
4627 }
4628# endif
4629
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004630 /*
4631 * If we start editing a new file, e.g. "test.doc", which resides on an
4632 * MSDOS compatible filesystem, it is possible that the file
4633 * "test.doc.swp" which we create will be exactly the same file. To avoid
4634 * this problem we temporarily create "test.doc". Don't do this when the
4635 * check below for a 8.3 file name is used.
4636 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004637 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4638 && mch_getperm(buf_fname) < 0)
4639 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640#endif
4641
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004642 /*
4643 * Isolate a directory name from *dirp and put it in dir_name.
4644 * First allocate some memory to put the directory name in.
4645 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004646 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004647 if (dir_name == NULL)
4648 *dirp = NULL;
4649 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 (void)copy_option_part(dirp, dir_name, 31000, ",");
4651
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004652 /*
4653 * we try different names until we find one that does not exist yet
4654 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004655 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 fname = NULL;
4657 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004658 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659
4660 for (;;)
4661 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004662 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004664 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004666 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 break;
4668 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004669#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670/*
4671 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4672 * file names. If this is the first try and the swap file name does not fit in
4673 * 8.3, detect if this is the case, set shortname and try again.
4674 */
4675 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4676 && !(buf->b_p_sn || buf->b_shortname))
4677 {
4678 char_u *tail;
4679 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004680 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 int f1, f2;
4682 int created1 = FALSE, created2 = FALSE;
4683 int same = FALSE;
4684
4685 /*
4686 * Check if swapfile name does not fit in 8.3:
4687 * It either contains two dots, is longer than 8 chars, or starts
4688 * with a dot.
4689 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004690 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 if ( vim_strchr(tail, '.') != NULL
4692 || STRLEN(tail) > (size_t)8
4693 || *gettail(fname) == '.')
4694 {
4695 fname2 = alloc(n + 2);
4696 if (fname2 != NULL)
4697 {
4698 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004699 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4700 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4701 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 if (vim_strchr(tail, '.') != NULL)
4703 fname2[n - 1] = 'x';
4704 else if (*gettail(fname) == '.')
4705 {
4706 fname2[n] = 'x';
4707 fname2[n + 1] = NUL;
4708 }
4709 else
4710 fname2[n - 5] += 1;
4711 /*
4712 * may need to create the files to be able to use mch_stat()
4713 */
4714 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4715 if (f1 < 0)
4716 {
4717 f1 = mch_open_rw((char *)fname,
4718 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 created1 = TRUE;
4720 }
4721 if (f1 >= 0)
4722 {
4723 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4724 if (f2 < 0)
4725 {
4726 f2 = mch_open_rw((char *)fname2,
4727 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4728 created2 = TRUE;
4729 }
4730 if (f2 >= 0)
4731 {
4732 /*
4733 * Both files exist now. If mch_stat() returns the
4734 * same device and inode they are the same file.
4735 */
4736 if (mch_fstat(f1, &s1) != -1
4737 && mch_fstat(f2, &s2) != -1
4738 && s1.st_dev == s2.st_dev
4739 && s1.st_ino == s2.st_ino)
4740 same = TRUE;
4741 close(f2);
4742 if (created2)
4743 mch_remove(fname2);
4744 }
4745 close(f1);
4746 if (created1)
4747 mch_remove(fname);
4748 }
4749 vim_free(fname2);
4750 if (same)
4751 {
4752 buf->b_shortname = TRUE;
4753 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004754 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004755 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004756 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 }
4758 }
4759 }
4760 }
4761#endif
4762 /*
4763 * check if the swapfile already exists
4764 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004765 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 {
4767#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004768 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769
4770 /*
4771 * Extra security check: When a swap file is a symbolic link, this
4772 * is most likely a symlink attack.
4773 */
4774 if (mch_lstat((char *)fname, &sb) < 0)
4775#else
4776# ifdef AMIGA
4777 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4778 /*
4779 * on the Amiga mch_getperm() will return -1 when the file exists
4780 * but is being used by another program. This happens if you edit
4781 * a file twice.
4782 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004783 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 {
4785 Close(fh);
4786 mch_remove(fname);
4787 break;
4788 }
4789 if (IoErr() != ERROR_OBJECT_IN_USE
4790 && IoErr() != ERROR_OBJECT_EXISTS)
4791# endif
4792#endif
4793 break;
4794 }
4795
4796 /*
4797 * A file name equal to old_fname is OK to use.
4798 */
4799 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4800 break;
4801
4802 /*
4803 * get here when file already exists
4804 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004805 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 /*
4808 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4809 * and file.doc are the same file. To guess if this problem is
4810 * present try if file.doc.swx exists. If it does, we set
4811 * buf->b_shortname and try file_doc.swp (dots replaced by
4812 * underscores for this file), and try again. If it doesn't we
4813 * assume that "file.doc.swp" already exists.
4814 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004815 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 {
4817 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004818 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004820 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821 {
4822 buf->b_shortname = TRUE;
4823 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004824 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004825 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004826 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 }
4828 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 /*
4830 * If we get here the ".swp" file really exists.
4831 * Give an error message, unless recovering, no file name, we are
4832 * viewing a help file or when the path of the file is different
4833 * (happens when all .swp files are in one directory).
4834 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004835 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004836 && !buf->b_help
4837 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 {
4839 int fd;
4840 struct block0 b0;
4841 int differ = FALSE;
4842
4843 /*
4844 * Try to read block 0 from the swap file to get the original
4845 * file name (and inode number).
4846 */
4847 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4848 if (fd >= 0)
4849 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004850 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004851 {
4852 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004853 * If the swapfile has the same directory as the
4854 * buffer don't compare the directory names, they can
4855 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004857 if (b0.b0_flags & B0_SAME_DIR)
4858 {
4859 if (fnamecmp(gettail(buf->b_ffname),
4860 gettail(b0.b0_fname)) != 0
4861 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004862 {
4863#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004864 // Symlinks may point to the same file even
4865 // when the name differs, need to check the
4866 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004867 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4868 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4869 char_to_long(b0.b0_ino)))
4870#endif
4871 differ = TRUE;
4872 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004873 }
4874 else
4875 {
4876 /*
4877 * The name in the swap file may be
4878 * "~user/path/file". Expand it first.
4879 */
4880 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004882 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004883 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004884 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004886 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4887 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
4891 close(fd);
4892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004894 // give the ATTENTION message when there is an old swap file
4895 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4897 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4898 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004899 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004900 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901#ifdef CREATE_DUMMY_FILE
4902 int did_use_dummy = FALSE;
4903
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004904 // Avoid getting a warning for the file being created
4905 // outside of Vim, it was created at the start of this
4906 // function. Delete the file now, because Vim might exit
4907 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 if (dummyfd != NULL)
4909 {
4910 fclose(dummyfd);
4911 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004912 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 did_use_dummy = TRUE;
4914 }
4915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004917#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 process_still_running = FALSE;
4919#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004920 // It's safe to delete the swap file if all these are true:
4921 // - the edited file exists
4922 // - the swap file has no changes and looks OK
4923 if (mch_stat((char *)buf->b_fname, &st) == 0
4924 && swapfile_unchanged(fname))
4925 {
4926 choice = 4;
4927 if (p_verbose > 0)
4928 verb_msg(_("Found a swap file that is not useful, deleting it"));
4929 }
4930
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004931#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004932 /*
4933 * If there is an SwapExists autocommand and we can handle
4934 * the response, trigger it. It may return 0 to ask the
4935 * user anyway.
4936 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004937 if (choice == 0
4938 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01004939 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004940 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004942 if (choice == 0)
4943#endif
4944 {
4945#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02004946 // If we are supposed to start the GUI but it wasn't
4947 // completely started yet, start it now. This makes
4948 // the messages displayed in the Vim window when
4949 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004950 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004951 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004952#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02004953 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004954 attention_message(buf, fname);
4955
Bram Moolenaar798184c2018-10-07 20:48:39 +02004956 // We don't want a 'q' typed at the more-prompt
4957 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004958 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02004959
4960 // If vimrc has "simalt ~x" we don't want it to
4961 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02004962 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964
4965#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004966 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 {
4968 char_u *name;
4969
Bram Moolenaar964b3742019-05-24 18:54:09 +02004970 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02004972 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 if (name != NULL)
4974 {
4975 STRCPY(name, _("Swap file \""));
4976 home_replace(NULL, fname, name + STRLEN(name),
4977 1000, TRUE);
4978 STRCAT(name, _("\" already exists!"));
4979 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004980 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 (char_u *)_("VIM - ATTENTION"),
4982 name == NULL
4983 ? (char_u *)_("Swap file already exists!")
4984 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004985# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 process_still_running
4987 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
4988# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01004989 (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 +00004990
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004991# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004992 if (process_still_running && choice >= 4)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004993 choice++; // Skip missing "Delete it" button
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004994# endif
4995 vim_free(name);
4996
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004997 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004998 msg_scrolled = 0;
4999 redraw_all_later(NOT_VALID);
5000 }
5001#endif
5002
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005003 if (choice > 0)
5004 {
5005 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
5007 case 1:
5008 buf->b_p_ro = TRUE;
5009 break;
5010 case 2:
5011 break;
5012 case 3:
5013 swap_exists_action = SEA_RECOVER;
5014 break;
5015 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005016 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 break;
5018 case 5:
5019 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 break;
5021 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005022 swap_exists_action = SEA_QUIT;
5023 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 break;
5025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005027 // If the file was deleted this fname can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 if (mch_getperm(fname) < 0)
5029 break;
5030 }
5031 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005032 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005033 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005034 if (msg_silent == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005035 // call wait_return() later
Bram Moolenaar4770d092006-01-12 23:22:24 +00005036 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 }
5038
5039#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005040 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005042 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043#endif
5044 }
5045 }
5046 }
5047
5048 /*
5049 * Change the ".swp" extension to find another file that can be used.
5050 * First decrement the last char: ".swo", ".swn", etc.
5051 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005052 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005054 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005056 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005058 emsg(_("E326: Too many swap files found"));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005059 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 break;
5061 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005062 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 fname[n - 1] = 'z' + 1;
5064 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005065 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 }
5067
5068 vim_free(dir_name);
5069#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005070 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 {
5072 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005073 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 }
5075#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005076#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005077 if (buf_fname != buf->b_fname)
5078 vim_free(buf_fname);
5079#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 return fname;
5081}
5082
5083 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005084b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085{
5086 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5087 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5088 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5089 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5090}
5091
5092#ifdef CHECK_INODE
5093/*
5094 * Compare current file name with file name from swap file.
5095 * Try to use inode numbers when possible.
5096 * Return non-zero when files are different.
5097 *
5098 * When comparing file names a few things have to be taken into consideration:
5099 * - When working over a network the full path of a file depends on the host.
5100 * We check the inode number if possible. It is not 100% reliable though,
5101 * because the device number cannot be used over a network.
5102 * - When a file does not exist yet (editing a new file) there is no inode
5103 * number.
5104 * - The file name in a swap file may not be valid on the current host. The
5105 * "~user" form is used whenever possible to avoid this.
5106 *
5107 * This is getting complicated, let's make a table:
5108 *
5109 * ino_c ino_s fname_c fname_s differ =
5110 *
5111 * both files exist -> compare inode numbers:
5112 * != 0 != 0 X X ino_c != ino_s
5113 *
5114 * inode number(s) unknown, file names available -> compare file names
5115 * == 0 X OK OK fname_c != fname_s
5116 * X == 0 OK OK fname_c != fname_s
5117 *
5118 * current file doesn't exist, file for swap file exist, file name(s) not
5119 * available -> probably different
5120 * == 0 != 0 FAIL X TRUE
5121 * == 0 != 0 X FAIL TRUE
5122 *
5123 * current file exists, inode for swap unknown, file name(s) not
5124 * available -> probably different
5125 * != 0 == 0 FAIL X TRUE
5126 * != 0 == 0 X FAIL TRUE
5127 *
5128 * current file doesn't exist, inode for swap unknown, one file name not
5129 * available -> probably different
5130 * == 0 == 0 FAIL OK TRUE
5131 * == 0 == 0 OK FAIL TRUE
5132 *
5133 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005134 * available -> compare file names
5135 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 *
5137 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5138 * can't be changed without making the block 0 incompatible with 32 bit
5139 * versions.
5140 */
5141
5142 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005143fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005144 char_u *fname_c, // current file name
5145 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005146 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005148 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005149 ino_t ino_c = 0; // ino of current file
5150 ino_t ino_s; // ino of file from swap file
5151 char_u buf_c[MAXPATHL]; // full path of fname_c
5152 char_u buf_s[MAXPATHL]; // full path of fname_s
5153 int retval_c; // flag: buf_c valid
5154 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155
5156 if (mch_stat((char *)fname_c, &st) == 0)
5157 ino_c = (ino_t)st.st_ino;
5158
5159 /*
5160 * First we try to get the inode from the file name, because the inode in
5161 * the swap file may be outdated. If that fails (e.g. this path is not
5162 * valid on this machine), use the inode from block 0.
5163 */
5164 if (mch_stat((char *)fname_s, &st) == 0)
5165 ino_s = (ino_t)st.st_ino;
5166 else
5167 ino_s = (ino_t)ino_block0;
5168
5169 if (ino_c && ino_s)
5170 return (ino_c != ino_s);
5171
5172 /*
5173 * One of the inode numbers is unknown, try a forced vim_FullName() and
5174 * compare the file names.
5175 */
5176 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5177 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5178 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005179 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180
5181 /*
5182 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005183 * unless both appear not to exist at all, then compare with the file name
5184 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 */
5186 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005187 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 return TRUE;
5189}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005190#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191
5192/*
5193 * Move a long integer into a four byte character array.
5194 * Used for machine independency in block zero.
5195 */
5196 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005197long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198{
5199 s[0] = (char_u)(n & 0xff);
5200 n = (unsigned)n >> 8;
5201 s[1] = (char_u)(n & 0xff);
5202 n = (unsigned)n >> 8;
5203 s[2] = (char_u)(n & 0xff);
5204 n = (unsigned)n >> 8;
5205 s[3] = (char_u)(n & 0xff);
5206}
5207
5208 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005209char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210{
5211 long retval;
5212
5213 retval = s[3];
5214 retval <<= 8;
5215 retval |= s[2];
5216 retval <<= 8;
5217 retval |= s[1];
5218 retval <<= 8;
5219 retval |= s[0];
5220
5221 return retval;
5222}
5223
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005224/*
5225 * Set the flags in the first block of the swap file:
5226 * - file is modified or not: buf->b_changed
5227 * - 'fileformat'
5228 * - 'fileencoding'
5229 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005231ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232{
5233 bhdr_T *hp;
5234 ZERO_BL *b0p;
5235
5236 if (!buf->b_ml.ml_mfp)
5237 return;
5238 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5239 {
5240 if (hp->bh_bnum == 0)
5241 {
5242 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005243 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5244 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5245 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005246 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 hp->bh_flags |= BH_DIRTY;
5248 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5249 break;
5250 }
5251 }
5252}
5253
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005254#if defined(FEAT_CRYPT) || defined(PROTO)
5255/*
5256 * If "data" points to a data block encrypt the text in it and return a copy
5257 * in allocated memory. Return NULL when out of memory.
5258 * Otherwise return "data".
5259 */
5260 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005261ml_encrypt_data(
5262 memfile_T *mfp,
5263 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005264 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005265 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005266{
5267 DATA_BL *dp = (DATA_BL *)data;
5268 char_u *head_end;
5269 char_u *text_start;
5270 char_u *new_data;
5271 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005272 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005273
5274 if (dp->db_id != DATA_ID)
5275 return data;
5276
Bram Moolenaarbc563362015-06-09 18:35:25 +02005277 state = ml_crypt_prepare(mfp, offset, FALSE);
5278 if (state == NULL)
5279 return data;
5280
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005281 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005282 if (new_data == NULL)
5283 return NULL;
5284 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5285 text_start = (char_u *)dp + dp->db_txt_start;
5286 text_len = size - dp->db_txt_start;
5287
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005288 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005289 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5290
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005291 // Encrypt the text.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005292 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start);
5293 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005294
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005295 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005296 if (head_end < text_start)
5297 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5298
5299 return new_data;
5300}
5301
5302/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005303 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005304 */
5305 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005306ml_decrypt_data(
5307 memfile_T *mfp,
5308 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005309 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005310 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005311{
5312 DATA_BL *dp = (DATA_BL *)data;
5313 char_u *head_end;
5314 char_u *text_start;
5315 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005316 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005317
5318 if (dp->db_id == DATA_ID)
5319 {
5320 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5321 text_start = (char_u *)dp + dp->db_txt_start;
5322 text_len = dp->db_txt_end - dp->db_txt_start;
5323
5324 if (head_end > text_start || dp->db_txt_start > size
5325 || dp->db_txt_end > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005326 return; // data was messed up
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005327
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005328 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005329 if (state != NULL)
5330 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005331 // Decrypt the text in place.
Bram Moolenaarbc563362015-06-09 18:35:25 +02005332 crypt_decode_inplace(state, text_start, text_len);
5333 crypt_free_state(state);
5334 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005335 }
5336}
5337
5338/*
5339 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005340 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005341 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005342 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005343ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005344{
5345 buf_T *buf = mfp->mf_buffer;
5346 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005347 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005348 char_u *key;
5349 char_u *seed;
5350
5351 if (reading && mfp->mf_old_key != NULL)
5352 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005353 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005354 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005355 key = mfp->mf_old_key;
5356 seed = mfp->mf_old_seed;
5357 }
5358 else
5359 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005360 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005361 key = buf->b_p_key;
5362 seed = mfp->mf_seed;
5363 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005364 if (*key == NUL)
5365 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005366
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005367 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005368 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005369 // For PKzip: Append the offset to the key, so that we use a different
5370 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005371 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005372 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005373 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005374
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005375 // Using blowfish or better: add salt and seed. We use the byte offset
5376 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005377 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5378 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
5379 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005380}
5381
5382#endif
5383
5384
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385#if defined(FEAT_BYTEOFF) || defined(PROTO)
5386
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005387#define MLCS_MAXL 800 // max no of lines in chunk
5388#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389
5390/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005391 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5393 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5394 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5395 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5396 */
5397 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005398ml_updatechunk(
5399 buf_T *buf,
5400 linenr_T line,
5401 long len,
5402 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403{
5404 static buf_T *ml_upd_lastbuf = NULL;
5405 static linenr_T ml_upd_lastline;
5406 static linenr_T ml_upd_lastcurline;
5407 static int ml_upd_lastcurix;
5408
5409 linenr_T curline = ml_upd_lastcurline;
5410 int curix = ml_upd_lastcurix;
5411 long size;
5412 chunksize_T *curchnk;
5413 int rest;
5414 bhdr_T *hp;
5415 DATA_BL *dp;
5416
5417 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5418 return;
5419 if (buf->b_ml.ml_chunksize == NULL)
5420 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005421 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 if (buf->b_ml.ml_chunksize == NULL)
5423 {
5424 buf->b_ml.ml_usedchunks = -1;
5425 return;
5426 }
5427 buf->b_ml.ml_numchunks = 100;
5428 buf->b_ml.ml_usedchunks = 1;
5429 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5430 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5431 }
5432
5433 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5434 {
5435 /*
5436 * First line in empty buffer from ml_flush_line() -- reset
5437 */
5438 buf->b_ml.ml_usedchunks = 1;
5439 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005440 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 return;
5442 }
5443
5444 /*
5445 * Find chunk that our line belongs to, curline will be at start of the
5446 * chunk.
5447 */
5448 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5449 || updtype != ML_CHNK_ADDLINE)
5450 {
5451 for (curline = 1, curix = 0;
5452 curix < buf->b_ml.ml_usedchunks - 1
5453 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5454 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005455 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005457 else if (curix < buf->b_ml.ml_usedchunks - 1
5458 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005460 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5462 curix++;
5463 }
5464 curchnk = buf->b_ml.ml_chunksize + curix;
5465
5466 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005467 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 curchnk->mlcs_totalsize += len;
5469 if (updtype == ML_CHNK_ADDLINE)
5470 {
5471 curchnk->mlcs_numlines++;
5472
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005473 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5475 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005476 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5477
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005479 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5481 if (buf->b_ml.ml_chunksize == NULL)
5482 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005483 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005484 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 buf->b_ml.ml_usedchunks = -1;
5486 return;
5487 }
5488 }
5489
5490 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5491 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005492 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005494 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495 int text_end;
5496 int linecnt;
5497
5498 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5499 buf->b_ml.ml_chunksize + curix,
5500 (buf->b_ml.ml_usedchunks - curix) *
5501 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005502 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 size = 0;
5504 linecnt = 0;
5505 while (curline < buf->b_ml.ml_line_count
5506 && linecnt < MLCS_MINL)
5507 {
5508 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5509 {
5510 buf->b_ml.ml_usedchunks = -1;
5511 return;
5512 }
5513 dp = (DATA_BL *)(hp->bh_data);
5514 count = (long)(buf->b_ml.ml_locked_high) -
5515 (long)(buf->b_ml.ml_locked_low) + 1;
5516 idx = curline - buf->b_ml.ml_locked_low;
5517 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005518
5519 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 rest = count - idx;
5521 if (linecnt + rest > MLCS_MINL)
5522 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005523 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 linecnt = MLCS_MINL;
5525 }
5526 else
5527 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005528 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 linecnt += rest;
5530 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005531#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005532 if (buf->b_has_textprop)
5533 {
5534 int i;
5535
5536 // We cannot use the text pointers to get the text length,
5537 // the text prop info would also be counted. Go over the
5538 // lines.
5539 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005540 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005541 }
5542 else
5543#endif
5544 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005545 if (idx == 0)// first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005546 text_end = dp->db_txt_end;
5547 else
5548 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5549 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 }
5552 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5553 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5554 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5555 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5556 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005557 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 return;
5559 }
5560 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5561 && curix == buf->b_ml.ml_usedchunks - 1
5562 && buf->b_ml.ml_line_count - line <= 1)
5563 {
5564 /*
5565 * We are in the last chunk and it is cheap to crate a new one
5566 * after this. Do it now to avoid the loop above later on
5567 */
5568 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5569 buf->b_ml.ml_usedchunks++;
5570 if (line == buf->b_ml.ml_line_count)
5571 {
5572 curchnk->mlcs_numlines = 0;
5573 curchnk->mlcs_totalsize = 0;
5574 }
5575 else
5576 {
5577 /*
5578 * Line is just prior to last, move count for last
5579 * This is the common case when loading a new file
5580 */
5581 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5582 if (hp == NULL)
5583 {
5584 buf->b_ml.ml_usedchunks = -1;
5585 return;
5586 }
5587 dp = (DATA_BL *)(hp->bh_data);
5588 if (dp->db_line_count == 1)
5589 rest = dp->db_txt_end - dp->db_txt_start;
5590 else
5591 rest =
5592 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5593 - dp->db_txt_start;
5594 curchnk->mlcs_totalsize = rest;
5595 curchnk->mlcs_numlines = 1;
5596 curchnk[-1].mlcs_totalsize -= rest;
5597 curchnk[-1].mlcs_numlines -= 1;
5598 }
5599 }
5600 }
5601 else if (updtype == ML_CHNK_DELLINE)
5602 {
5603 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005604 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605 if (curix < (buf->b_ml.ml_usedchunks - 1)
5606 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5607 <= MLCS_MINL)
5608 {
5609 curix++;
5610 curchnk = buf->b_ml.ml_chunksize + curix;
5611 }
5612 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5613 {
5614 buf->b_ml.ml_usedchunks--;
5615 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5616 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5617 return;
5618 }
5619 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5620 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5621 > MLCS_MINL))
5622 {
5623 return;
5624 }
5625
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005626 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5628 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5629 buf->b_ml.ml_usedchunks--;
5630 if (curix < buf->b_ml.ml_usedchunks)
5631 {
5632 mch_memmove(buf->b_ml.ml_chunksize + curix,
5633 buf->b_ml.ml_chunksize + curix + 1,
5634 (buf->b_ml.ml_usedchunks - curix) *
5635 sizeof(chunksize_T));
5636 }
5637 return;
5638 }
5639 ml_upd_lastbuf = buf;
5640 ml_upd_lastline = line;
5641 ml_upd_lastcurline = curline;
5642 ml_upd_lastcurix = curix;
5643}
5644
5645/*
5646 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005647 * Find line with offset if "lnum" is 0; return remaining offset in offp
5648 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 * return -1 if information is not available
5650 */
5651 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005652ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005653{
5654 linenr_T curline;
5655 int curix;
5656 long size;
5657 bhdr_T *hp;
5658 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005659 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660 int idx;
5661 int start_idx;
5662 int text_end;
5663 long offset;
5664 int len;
5665 int ffdos = (get_fileformat(buf) == EOL_DOS);
5666 int extra = 0;
5667
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005668 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005669 ml_flush_line(curbuf);
5670
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671 if (buf->b_ml.ml_usedchunks == -1
5672 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005673 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 return -1;
5675
5676 if (offp == NULL)
5677 offset = 0;
5678 else
5679 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005680 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005681 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005682 /*
5683 * Find the last chunk before the one containing our line. Last chunk is
5684 * special because it will never qualify
5685 */
5686 curline = 1;
5687 curix = size = 0;
5688 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005689 && ((lnum != 0
5690 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 || (offset != 0
5692 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
5693 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
5694 {
5695 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5696 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5697 if (offset && ffdos)
5698 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5699 curix++;
5700 }
5701
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005702 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 {
5704 if (curline > buf->b_ml.ml_line_count
5705 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5706 return -1;
5707 dp = (DATA_BL *)(hp->bh_data);
5708 count = (long)(buf->b_ml.ml_locked_high) -
5709 (long)(buf->b_ml.ml_locked_low) + 1;
5710 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005711 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 text_end = dp->db_txt_end;
5713 else
5714 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005715 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005716 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005718 if (curline + (count - idx) >= lnum)
5719 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 else
5721 idx = count - 1;
5722 }
5723 else
5724 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005725#ifdef FEAT_PROP_POPUP
Bram Moolenaar109ef122020-01-17 19:12:03 +01005726 size_t textprop_total = 0;
5727 size_t textprop_size = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005728 char_u *l1, *l2;
5729#endif
5730
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005732 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005734#ifdef FEAT_PROP_POPUP
5735 if (buf->b_has_textprop)
5736 {
5737 // compensate for the extra bytes taken by textprops
5738 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5739 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5740 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5741 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5742 }
5743#endif
5744 if (!(offset >= size
5745 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5746#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005747 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005748#endif
5749 + ffdos))
5750 break;
5751
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 if (ffdos)
5753 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005754#ifdef FEAT_PROP_POPUP
5755 textprop_total += textprop_size;
5756#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 if (idx == count - 1)
5758 {
5759 extra = 1;
5760 break;
5761 }
5762 idx++;
5763 }
5764 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005765#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005766 if (buf->b_has_textprop)
5767 {
5768 int i;
5769
5770 // cannot use the db_index pointer, need to get the actual text
5771 // lengths.
5772 len = 0;
5773 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005774 len += (int)STRLEN((char_u *)dp
5775 + ((dp->db_index[i]) & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005776 }
5777 else
5778#endif
5779 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 size += len;
5781 if (offset != 0 && size >= offset)
5782 {
5783 if (size + ffdos == offset)
5784 *offp = 0;
5785 else if (idx == start_idx)
5786 *offp = offset - size + len;
5787 else
5788 *offp = offset - size + len
5789 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5790 curline += idx - start_idx + extra;
5791 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005792 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005793 return curline;
5794 }
5795 curline = buf->b_ml.ml_locked_high + 1;
5796 }
5797
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005798 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005799 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005800 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005801 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005802 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005803
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005804 // Don't count the last line break if 'noeol' and ('bin' or
5805 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005806 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005807 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005808 size -= ffdos + 1;
5809 }
5810
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 return size;
5812}
5813
5814/*
5815 * Goto byte in buffer with offset 'cnt'.
5816 */
5817 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005818goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819{
5820 long boff = cnt;
5821 linenr_T lnum;
5822
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005823 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824 setpcmark();
5825 if (boff)
5826 --boff;
5827 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005828 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 {
5830 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5831 curwin->w_curswant = MAXCOL;
5832 coladvance((colnr_T)MAXCOL);
5833 }
5834 else
5835 {
5836 curwin->w_cursor.lnum = lnum;
5837 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005838 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 curwin->w_set_curswant = TRUE;
5840 }
5841 check_cursor();
5842
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005843 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 if (has_mbyte)
5845 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846}
5847#endif