blob: 0d816f36d3d1eb365ee05e45e548034819dd94d1 [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
10/*
11 * memfile.c: Contains the functions for handling blocks of memory which can
12 * be stored in a file. This is the implementation of a sort of virtual memory.
13 *
14 * A memfile consists of a sequence of blocks. The blocks numbered from 0
15 * upwards have been assigned a place in the actual file. The block number
16 * is equal to the page number in the file. The
17 * blocks with negative numbers are currently in memory only. They can be
18 * assigned a place in the file when too much memory is being used. At that
19 * moment they get a new, positive, number. A list is used for translation of
20 * negative to positive numbers.
21 *
22 * The size of a block is a multiple of a page size, normally the page size of
23 * the device the file is on. Most blocks are 1 page long. A Block of multiple
24 * pages is used for a line that does not fit in a single page.
25 *
26 * Each block can be in memory and/or in a file. The block stays in memory
27 * as long as it is locked. If it is no longer locked it can be swapped out to
28 * the file. It is only written to the file if it has been changed.
29 *
30 * Under normal operation the file is created when opening the memory file and
31 * deleted when closing the memory file. Only with recovery an existing memory
32 * file is opened.
33 */
34
Bram Moolenaar071d4272004-06-13 20:20:40 +000035#include "vim.h"
36
Bram Moolenaar071d4272004-06-13 20:20:40 +000037/*
38 * Some systems have the page size in statfs.f_bsize, some in stat.st_blksize
39 */
40#ifdef HAVE_ST_BLKSIZE
41# define STATFS stat
42# define F_BSIZE st_blksize
43# define fstatfs(fd, buf, len, nul) mch_fstat((fd), (buf))
44#else
45# ifdef HAVE_SYS_STATFS_H
46# include <sys/statfs.h>
47# define STATFS statfs
48# define F_BSIZE f_bsize
Bram Moolenaar071d4272004-06-13 20:20:40 +000049# endif
50#endif
51
52/*
53 * for Amiga Dos 2.0x we use Flush
54 */
55#ifdef AMIGA
56# ifdef FEAT_ARP
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010057extern int dos2; // this is in os_amiga.c
Bram Moolenaar071d4272004-06-13 20:20:40 +000058# endif
59# ifdef SASC
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060# include <ios1.h> // for chkufb()
Bram Moolenaar071d4272004-06-13 20:20:40 +000061# endif
62#endif
63
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010064#define MEMFILE_PAGE_SIZE 4096 // default page size
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010066static long_u total_mem_used = 0; // total memory used for memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010068static void mf_ins_hash(memfile_T *, bhdr_T *);
69static void mf_rem_hash(memfile_T *, bhdr_T *);
70static bhdr_T *mf_find_hash(memfile_T *, blocknr_T);
71static void mf_ins_used(memfile_T *, bhdr_T *);
72static void mf_rem_used(memfile_T *, bhdr_T *);
73static bhdr_T *mf_release(memfile_T *, int);
74static bhdr_T *mf_alloc_bhdr(memfile_T *, int);
75static void mf_free_bhdr(bhdr_T *);
76static void mf_ins_free(memfile_T *, bhdr_T *);
77static bhdr_T *mf_rem_free(memfile_T *);
78static int mf_read(memfile_T *, bhdr_T *);
79static int mf_write(memfile_T *, bhdr_T *);
Bram Moolenaar8767f522016-07-01 17:17:39 +020080static int mf_write_block(memfile_T *mfp, bhdr_T *hp, off_T offset, unsigned size);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +010081static int mf_trans_add(memfile_T *, bhdr_T *);
82static void mf_do_open(memfile_T *, char_u *, int);
83static void mf_hash_init(mf_hashtab_T *);
84static void mf_hash_free(mf_hashtab_T *);
85static void mf_hash_free_all(mf_hashtab_T *);
86static mf_hashitem_T *mf_hash_find(mf_hashtab_T *, blocknr_T);
87static void mf_hash_add_item(mf_hashtab_T *, mf_hashitem_T *);
88static void mf_hash_rem_item(mf_hashtab_T *, mf_hashitem_T *);
89static int mf_hash_grow(mf_hashtab_T *);
Bram Moolenaar071d4272004-06-13 20:20:40 +000090
91/*
92 * The functions for using a memfile:
93 *
94 * mf_open() open a new or existing memfile
95 * mf_open_file() open a swap file for an existing memfile
96 * mf_close() close (and delete) a memfile
97 * mf_new() create a new block in a memfile and lock it
98 * mf_get() get an existing block and lock it
99 * mf_put() unlock a block, may be marked for writing
100 * mf_free() remove a block
101 * mf_sync() sync changed parts of memfile to disk
102 * mf_release_all() release as much memory as possible
103 * mf_trans_del() may translate negative to positive block number
104 * mf_fullname() make file name full path (use before first :cd)
105 */
106
107/*
108 * Open an existing or new memory block file.
109 *
110 * fname: name of file to use (NULL means no file at all)
111 * Note: fname must have been allocated, it is not copied!
112 * If opening the file fails, fname is freed.
113 * flags: flags for open() call
114 *
115 * If fname != NULL and file cannot be opened, fail.
116 *
117 * return value: identifier for this memory block file.
118 */
119 memfile_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100120mf_open(char_u *fname, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121{
122 memfile_T *mfp;
Bram Moolenaar8767f522016-07-01 17:17:39 +0200123 off_T size;
Bram Moolenaara03dbed2013-05-23 22:27:03 +0200124#if defined(STATFS) && defined(UNIX) && !defined(__QNX__) && !defined(__minix)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125# define USE_FSTATFS
126 struct STATFS stf;
127#endif
128
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200129 if ((mfp = ALLOC_ONE(memfile_T)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130 return NULL;
131
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100132 if (fname == NULL) // no file for this memfile, use memory only
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 {
134 mfp->mf_fname = NULL;
135 mfp->mf_ffname = NULL;
136 mfp->mf_fd = -1;
137 }
138 else
139 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100140 mf_do_open(mfp, fname, flags); // try to open the file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100142 // if the file cannot be opened, return here
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143 if (mfp->mf_fd < 0)
144 {
145 vim_free(mfp);
146 return NULL;
147 }
148 }
149
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100150 mfp->mf_free_first = NULL; // free list is empty
151 mfp->mf_used_first = NULL; // used list is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152 mfp->mf_used_last = NULL;
153 mfp->mf_dirty = FALSE;
154 mfp->mf_used_count = 0;
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100155 mf_hash_init(&mfp->mf_hash);
156 mf_hash_init(&mfp->mf_trans);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 mfp->mf_page_size = MEMFILE_PAGE_SIZE;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200158#ifdef FEAT_CRYPT
159 mfp->mf_old_key = NULL;
160#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161
162#ifdef USE_FSTATFS
163 /*
164 * Try to set the page size equal to the block size of the device.
165 * Speeds up I/O a lot.
166 * When recovering, the actual block size will be retrieved from block 0
167 * in ml_recover(). The size used here may be wrong, therefore
168 * mf_blocknr_max must be rounded up.
169 */
170 if (mfp->mf_fd >= 0
171 && fstatfs(mfp->mf_fd, &stf, sizeof(struct statfs), 0) == 0
172 && stf.F_BSIZE >= MIN_SWAP_PAGE_SIZE
173 && stf.F_BSIZE <= MAX_SWAP_PAGE_SIZE)
174 mfp->mf_page_size = stf.F_BSIZE;
175#endif
176
177 if (mfp->mf_fd < 0 || (flags & (O_TRUNC|O_EXCL))
Bram Moolenaar8767f522016-07-01 17:17:39 +0200178 || (size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100179 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180 else
181 mfp->mf_blocknr_max = (blocknr_T)((size + mfp->mf_page_size - 1)
182 / mfp->mf_page_size);
183 mfp->mf_blocknr_min = -1;
184 mfp->mf_neg_count = 0;
185 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaarfe265ff2007-05-11 18:15:45 +0000186
187 /*
188 * Compute maximum number of pages ('maxmem' is in Kbyte):
189 * 'mammem' * 1Kbyte / page-size-in-bytes.
190 * Avoid overflow by first reducing page size as much as possible.
191 */
192 {
193 int shift = 10;
194 unsigned page_size = mfp->mf_page_size;
195
196 while (shift > 0 && (page_size & 1) == 0)
197 {
198 page_size = page_size >> 1;
199 --shift;
200 }
201 mfp->mf_used_count_max = (p_mm << shift) / page_size;
202 if (mfp->mf_used_count_max < 10)
203 mfp->mf_used_count_max = 10;
204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205
206 return mfp;
207}
208
209/*
210 * Open a file for an existing memfile. Used when updatecount set from 0 to
211 * some value.
212 * If the file already exists, this fails.
213 * "fname" is the name of file to use (NULL means no file at all)
214 * Note: "fname" must have been allocated, it is not copied! If opening the
215 * file fails, "fname" is freed.
216 *
217 * return value: FAIL if file could not be opened, OK otherwise
218 */
219 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100220mf_open_file(memfile_T *mfp, char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100222 mf_do_open(mfp, fname, O_RDWR|O_CREAT|O_EXCL); // try to open the file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223
224 if (mfp->mf_fd < 0)
225 return FAIL;
226
227 mfp->mf_dirty = TRUE;
228 return OK;
229}
230
231/*
Bram Moolenaar945e2db2010-06-05 17:43:32 +0200232 * Close a memory file and delete the associated file if 'del_file' is TRUE.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233 */
234 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100235mf_close(memfile_T *mfp, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236{
237 bhdr_T *hp, *nextp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100239 if (mfp == NULL) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 return;
241 if (mfp->mf_fd >= 0)
242 {
243 if (close(mfp->mf_fd) < 0)
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000244 emsg(_(e_close_error_on_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 }
246 if (del_file && mfp->mf_fname != NULL)
247 mch_remove(mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100248 // free entries in used list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249 for (hp = mfp->mf_used_first; hp != NULL; hp = nextp)
250 {
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +0000251 total_mem_used -= (long_u)hp->bh_page_count * mfp->mf_page_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 nextp = hp->bh_next;
253 mf_free_bhdr(hp);
254 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100255 while (mfp->mf_free_first != NULL) // free entries in free list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 vim_free(mf_rem_free(mfp));
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100257 mf_hash_free(&mfp->mf_hash);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100258 mf_hash_free_all(&mfp->mf_trans); // free hashtable and its items
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259 vim_free(mfp->mf_fname);
260 vim_free(mfp->mf_ffname);
261 vim_free(mfp);
262}
263
264/*
265 * Close the swap file for a memfile. Used when 'swapfile' is reset.
266 */
267 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100268mf_close_file(
269 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100270 int getlines) // get all lines into memory?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271{
272 memfile_T *mfp;
273 linenr_T lnum;
274
275 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100276 if (mfp == NULL || mfp->mf_fd < 0) // nothing to close
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 return;
278
279 if (getlines)
280 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100281 // get all blocks in memory by accessing all lines (clumsy!)
Bram Moolenaar47b8b152007-02-07 02:41:57 +0000282 mf_dont_release = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283 for (lnum = 1; lnum <= buf->b_ml.ml_line_count; ++lnum)
284 (void)ml_get_buf(buf, lnum, FALSE);
Bram Moolenaar47b8b152007-02-07 02:41:57 +0000285 mf_dont_release = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100286 // TODO: should check if all blocks are really in core
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287 }
288
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100289 if (close(mfp->mf_fd) < 0) // close the file
Bram Moolenaar12f3c1b2021-12-05 21:46:34 +0000290 emsg(_(e_close_error_on_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 mfp->mf_fd = -1;
292
293 if (mfp->mf_fname != NULL)
294 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100295 mch_remove(mfp->mf_fname); // delete the swap file
Bram Moolenaard23a8232018-02-10 18:45:26 +0100296 VIM_CLEAR(mfp->mf_fname);
297 VIM_CLEAR(mfp->mf_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 }
299}
300
301/*
302 * Set new size for a memfile. Used when block 0 of a swapfile has been read
303 * and the size it indicates differs from what was guessed.
304 */
305 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100306mf_new_page_size(memfile_T *mfp, unsigned new_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100308 // Correct the memory used for block 0 to the new size, because it will be
309 // freed with that size later on.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 total_mem_used += new_size - mfp->mf_page_size;
311 mfp->mf_page_size = new_size;
312}
313
314/*
315 * get a new block
316 *
317 * negative: TRUE if negative block number desired (data block)
318 */
319 bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100320mf_new(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100322 bhdr_T *hp; // new bhdr_T
323 bhdr_T *freep; // first block in free list
Bram Moolenaar17e79192007-05-06 14:15:36 +0000324 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325
326 /*
327 * If we reached the maximum size for the used memory blocks, release one
328 * If a bhdr_T is returned, use it and adjust the page_count if necessary.
329 */
330 hp = mf_release(mfp, page_count);
331
332/*
333 * Decide on the number to use:
334 * If there is a free block, use its number.
335 * Otherwise use mf_block_min for a negative number, mf_block_max for
336 * a positive number.
337 */
338 freep = mfp->mf_free_first;
339 if (!negative && freep != NULL && freep->bh_page_count >= page_count)
340 {
341 /*
342 * If the block in the free list has more pages, take only the number
343 * of pages needed and allocate a new bhdr_T with data
344 *
Bram Moolenaar17e79192007-05-06 14:15:36 +0000345 * If the number of pages matches and mf_release() did not return a
346 * bhdr_T, use the bhdr_T from the free list and allocate the data
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 *
Bram Moolenaar17e79192007-05-06 14:15:36 +0000348 * If the number of pages matches and mf_release() returned a bhdr_T,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 * just use the number and free the bhdr_T from the free list
350 */
351 if (freep->bh_page_count > page_count)
352 {
353 if (hp == NULL && (hp = mf_alloc_bhdr(mfp, page_count)) == NULL)
354 return NULL;
355 hp->bh_bnum = freep->bh_bnum;
356 freep->bh_bnum += page_count;
357 freep->bh_page_count -= page_count;
358 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100359 else if (hp == NULL) // need to allocate memory for this block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 {
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +0000361 if ((p = alloc((size_t)mfp->mf_page_size * page_count)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362 return NULL;
363 hp = mf_rem_free(mfp);
364 hp->bh_data = p;
365 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100366 else // use the number, remove entry from free list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 {
368 freep = mf_rem_free(mfp);
369 hp->bh_bnum = freep->bh_bnum;
370 vim_free(freep);
371 }
372 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100373 else // get a new number
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 {
375 if (hp == NULL && (hp = mf_alloc_bhdr(mfp, page_count)) == NULL)
376 return NULL;
377 if (negative)
378 {
379 hp->bh_bnum = mfp->mf_blocknr_min--;
380 mfp->mf_neg_count++;
381 }
382 else
383 {
384 hp->bh_bnum = mfp->mf_blocknr_max;
385 mfp->mf_blocknr_max += page_count;
386 }
387 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100388 hp->bh_flags = BH_LOCKED | BH_DIRTY; // new block is always dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 mfp->mf_dirty = TRUE;
390 hp->bh_page_count = page_count;
391 mf_ins_used(mfp, hp);
392 mf_ins_hash(mfp, hp);
393
394 /*
395 * Init the data to all zero, to avoid reading uninitialized data.
396 * This also avoids that the passwd file ends up in the swap file!
397 */
Bram Moolenaar945e2db2010-06-05 17:43:32 +0200398 (void)vim_memset((char *)(hp->bh_data), 0,
399 (size_t)mfp->mf_page_size * page_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
401 return hp;
402}
403
404/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200405 * Get existing block "nr" with "page_count" pages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 *
407 * Note: The caller should first check a negative nr with mf_trans_del()
408 */
409 bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100410mf_get(memfile_T *mfp, blocknr_T nr, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411{
412 bhdr_T *hp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100413 // doesn't exist
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 if (nr >= mfp->mf_blocknr_max || nr <= mfp->mf_blocknr_min)
415 return NULL;
416
417 /*
418 * see if it is in the cache
419 */
420 hp = mf_find_hash(mfp, nr);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100421 if (hp == NULL) // not in the hash list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100423 if (nr < 0 || nr >= mfp->mf_infile_count) // can't be in the file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 return NULL;
425
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100426 // could check here if the block is in the free list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427
428 /*
429 * Check if we need to flush an existing block.
430 * If so, use that block.
431 * If not, allocate a new block.
432 */
433 hp = mf_release(mfp, page_count);
434 if (hp == NULL && (hp = mf_alloc_bhdr(mfp, page_count)) == NULL)
435 return NULL;
436
437 hp->bh_bnum = nr;
438 hp->bh_flags = 0;
439 hp->bh_page_count = page_count;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100440 if (mf_read(mfp, hp) == FAIL) // cannot read the block!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 {
442 mf_free_bhdr(hp);
443 return NULL;
444 }
445 }
446 else
447 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100448 mf_rem_used(mfp, hp); // remove from list, insert in front below
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 mf_rem_hash(mfp, hp);
450 }
451
452 hp->bh_flags |= BH_LOCKED;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100453 mf_ins_used(mfp, hp); // put in front of used list
454 mf_ins_hash(mfp, hp); // put in front of hash list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455
456 return hp;
457}
458
459/*
460 * release the block *hp
461 *
462 * dirty: Block must be written to file later
463 * infile: Block should be in file (needed for recovery)
464 *
465 * no return value, function cannot fail
466 */
467 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100468mf_put(
469 memfile_T *mfp,
470 bhdr_T *hp,
471 int dirty,
472 int infile)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473{
474 int flags;
475
476 flags = hp->bh_flags;
477
478 if ((flags & BH_LOCKED) == 0)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000479 iemsg(_(e_block_was_not_locked));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480 flags &= ~BH_LOCKED;
481 if (dirty)
482 {
483 flags |= BH_DIRTY;
484 mfp->mf_dirty = TRUE;
485 }
486 hp->bh_flags = flags;
487 if (infile)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100488 mf_trans_add(mfp, hp); // may translate negative in positive nr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489}
490
491/*
492 * block *hp is no longer in used, may put it in the free list of memfile *mfp
493 */
494 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100495mf_free(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100497 vim_free(hp->bh_data); // free the memory
498 mf_rem_hash(mfp, hp); // get *hp out of the hash list
499 mf_rem_used(mfp, hp); // get *hp out of the used list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 if (hp->bh_bnum < 0)
501 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100502 vim_free(hp); // don't want negative numbers in free list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000503 mfp->mf_neg_count--;
504 }
505 else
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100506 mf_ins_free(mfp, hp); // put *hp in the free list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507}
508
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509/*
510 * Sync the memory file *mfp to disk.
511 * Flags:
512 * MFS_ALL If not given, blocks with negative numbers are not synced,
513 * even when they are dirty!
514 * MFS_STOP Stop syncing when a character becomes available, but sync at
515 * least one block.
516 * MFS_FLUSH Make sure buffers are flushed to disk, so they will survive a
517 * system crash.
518 * MFS_ZERO Only write block 0.
519 *
520 * Return FAIL for failure, OK otherwise
521 */
522 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100523mf_sync(memfile_T *mfp, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524{
525 int status;
526 bhdr_T *hp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 int got_int_save = got_int;
528
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100529 if (mfp->mf_fd < 0) // there is no file, nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {
531 mfp->mf_dirty = FALSE;
532 return FAIL;
533 }
534
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100535 // Only a CTRL-C while writing will break us here, not one typed
536 // previously.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 got_int = FALSE;
538
539 /*
540 * sync from last to first (may reduce the probability of an inconsistent
541 * file) If a write fails, it is very likely caused by a full filesystem.
542 * Then we only try to write blocks within the existing file. If that also
543 * fails then we give up.
544 */
545 status = OK;
546 for (hp = mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
547 if (((flags & MFS_ALL) || hp->bh_bnum >= 0)
548 && (hp->bh_flags & BH_DIRTY)
549 && (status == OK || (hp->bh_bnum >= 0
550 && hp->bh_bnum < mfp->mf_infile_count)))
551 {
552 if ((flags & MFS_ZERO) && hp->bh_bnum != 0)
553 continue;
554 if (mf_write(mfp, hp) == FAIL)
555 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100556 if (status == FAIL) // double error: quit syncing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 break;
558 status = FAIL;
559 }
560 if (flags & MFS_STOP)
561 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100562 // Stop when char available now.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 if (ui_char_avail())
564 break;
565 }
566 else
567 ui_breakcheck();
568 if (got_int)
569 break;
570 }
571
572 /*
573 * If the whole list is flushed, the memfile is not dirty anymore.
574 * In case of an error this flag is also set, to avoid trying all the time.
575 */
576 if (hp == NULL || status == FAIL)
577 mfp->mf_dirty = FALSE;
578
579 if ((flags & MFS_FLUSH) && *p_sws != NUL)
580 {
581#if defined(UNIX)
582# ifdef HAVE_FSYNC
583 /*
584 * most Unixes have the very useful fsync() function, just what we need.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 if (STRCMP(p_sws, "fsync") == 0)
587 {
Bram Moolenaara7870192019-02-14 12:56:36 +0100588 if (vim_fsync(mfp->mf_fd))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 status = FAIL;
590 }
591 else
592# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100593 // OpenNT is strictly POSIX (Benzinger)
594 // Tandem/Himalaya NSK-OSS doesn't have sync()
595 // No sync() on Stratus VOS
Bram Moolenaarba17ed62015-02-27 18:25:16 +0100596# if defined(__OPENNT) || defined(__TANDEM) || defined(__VOS__)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 fflush(NULL);
598# else
599 sync();
600# endif
601#endif
602#ifdef VMS
603 if (STRCMP(p_sws, "fsync") == 0)
604 {
Bram Moolenaara7870192019-02-14 12:56:36 +0100605 if (vim_fsync(mfp->mf_fd))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 status = FAIL;
607 }
608#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +0100609#ifdef MSWIN
Bram Moolenaar0bd40512018-09-21 14:48:53 +0200610 if (_commit(mfp->mf_fd))
611 status = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612#endif
613#ifdef AMIGA
Bram Moolenaar5a6404c2006-11-01 17:12:57 +0000614# if defined(__AROS__) || defined(__amigaos4__)
Bram Moolenaara7870192019-02-14 12:56:36 +0100615 if (vim_fsync(mfp->mf_fd) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 status = FAIL;
617# else
618 /*
619 * Flush() only exists for AmigaDos 2.0.
620 * For 1.3 it should be done with close() + open(), but then the risk
621 * is that the open() may fail and lose the file....
622 */
623# ifdef FEAT_ARP
624 if (dos2)
625# endif
626# ifdef SASC
627 {
628 struct UFB *fp = chkufb(mfp->mf_fd);
629
630 if (fp != NULL)
631 Flush(fp->ufbfh);
632 }
633# else
634# if defined(_DCC) || defined(__GNUC__) || defined(__MORPHOS__)
635 {
Bram Moolenaar89f37272006-09-26 11:48:34 +0000636# if defined(__GNUC__) && !defined(__MORPHOS__) && defined(__libnix__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100637 // Have function (in libnix at least),
638 // but ain't got no prototype anywhere.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 extern unsigned long fdtofh(int filedescriptor);
640# endif
Bram Moolenaar89f37272006-09-26 11:48:34 +0000641# if !defined(__libnix__)
642 fflush(NULL);
643# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 BPTR fh = (BPTR)fdtofh(mfp->mf_fd);
645
646 if (fh != 0)
647 Flush(fh);
Bram Moolenaar89f37272006-09-26 11:48:34 +0000648# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100650# else // assume Manx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 Flush(_devtab[mfp->mf_fd].fd);
652# endif
653# endif
654# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100655#endif // AMIGA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 }
657
658 got_int |= got_int_save;
659
660 return status;
661}
662
663/*
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000664 * For all blocks in memory file *mfp that have a positive block number set
665 * the dirty flag. These are blocks that need to be written to a newly
666 * created swapfile.
667 */
668 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100669mf_set_dirty(memfile_T *mfp)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000670{
671 bhdr_T *hp;
672
673 for (hp = mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
674 if (hp->bh_bnum > 0)
675 hp->bh_flags |= BH_DIRTY;
676 mfp->mf_dirty = TRUE;
677}
678
679/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 * insert block *hp in front of hashlist of memfile *mfp
681 */
682 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100683mf_ins_hash(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684{
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100685 mf_hash_add_item(&mfp->mf_hash, (mf_hashitem_T *)hp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686}
687
688/*
689 * remove block *hp from hashlist of memfile list *mfp
690 */
691 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100692mf_rem_hash(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693{
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100694 mf_hash_rem_item(&mfp->mf_hash, (mf_hashitem_T *)hp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695}
696
697/*
698 * look in hash lists of memfile *mfp for block header with number 'nr'
699 */
700 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100701mf_find_hash(memfile_T *mfp, blocknr_T nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702{
Bram Moolenaarb05b10a2011-03-22 18:10:45 +0100703 return (bhdr_T *)mf_hash_find(&mfp->mf_hash, nr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704}
705
706/*
707 * insert block *hp in front of used list of memfile *mfp
708 */
709 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100710mf_ins_used(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711{
712 hp->bh_next = mfp->mf_used_first;
713 mfp->mf_used_first = hp;
714 hp->bh_prev = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100715 if (hp->bh_next == NULL) // list was empty, adjust last pointer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716 mfp->mf_used_last = hp;
717 else
718 hp->bh_next->bh_prev = hp;
719 mfp->mf_used_count += hp->bh_page_count;
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +0000720 total_mem_used += (long_u)hp->bh_page_count * mfp->mf_page_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721}
722
723/*
724 * remove block *hp from used list of memfile *mfp
725 */
726 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100727mf_rem_used(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100729 if (hp->bh_next == NULL) // last block in used list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 mfp->mf_used_last = hp->bh_prev;
731 else
732 hp->bh_next->bh_prev = hp->bh_prev;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100733 if (hp->bh_prev == NULL) // first block in used list
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 mfp->mf_used_first = hp->bh_next;
735 else
736 hp->bh_prev->bh_next = hp->bh_next;
737 mfp->mf_used_count -= hp->bh_page_count;
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +0000738 total_mem_used -= (long_u)hp->bh_page_count * mfp->mf_page_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739}
740
741/*
742 * Release the least recently used block from the used list if the number
743 * of used memory blocks gets to big.
744 *
745 * Return the block header to the caller, including the memory block, so
746 * it can be re-used. Make sure the page_count is right.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200747 *
748 * Returns NULL if no block is released.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 */
750 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100751mf_release(memfile_T *mfp, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752{
753 bhdr_T *hp;
754 int need_release;
755 buf_T *buf;
756
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100757 // don't release while in mf_close_file()
Bram Moolenaar47b8b152007-02-07 02:41:57 +0000758 if (mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 return NULL;
760
761 /*
762 * Need to release a block if the number of blocks for this memfile is
763 * higher than the maximum or total memory used is over 'maxmemtot'
764 */
765 need_release = ((mfp->mf_used_count >= mfp->mf_used_count_max)
766 || (total_mem_used >> 10) >= (long_u)p_mmt);
767
768 /*
769 * Try to create a swap file if the amount of memory used is getting too
770 * high.
771 */
772 if (mfp->mf_fd < 0 && need_release && p_uc)
773 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100774 // find for which buffer this memfile is
Bram Moolenaar29323592016-07-24 22:04:11 +0200775 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 if (buf->b_ml.ml_mfp == mfp)
777 break;
778 if (buf != NULL && buf->b_may_swap)
779 ml_open_file(buf);
780 }
781
782 /*
783 * don't release a block if
784 * there is no file for this memfile
785 * or
786 * the number of blocks for this memfile is lower than the maximum
787 * and
788 * total memory used is not up to 'maxmemtot'
789 */
790 if (mfp->mf_fd < 0 || !need_release)
791 return NULL;
792
793 for (hp = mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
794 if (!(hp->bh_flags & BH_LOCKED))
795 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100796 if (hp == NULL) // not a single one that can be released
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 return NULL;
798
799 /*
800 * If the block is dirty, write it.
801 * If the write fails we don't free it.
802 */
803 if ((hp->bh_flags & BH_DIRTY) && mf_write(mfp, hp) == FAIL)
804 return NULL;
805
806 mf_rem_used(mfp, hp);
807 mf_rem_hash(mfp, hp);
808
809 /*
810 * If a bhdr_T is returned, make sure that the page_count of bh_data is
811 * right
812 */
813 if (hp->bh_page_count != page_count)
814 {
815 vim_free(hp->bh_data);
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +0000816 if ((hp->bh_data = alloc((size_t)mfp->mf_page_size * page_count))
817 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 {
819 vim_free(hp);
820 return NULL;
821 }
822 hp->bh_page_count = page_count;
823 }
824 return hp;
825}
826
827/*
828 * release as many blocks as possible
829 * Used in case of out of memory
830 *
831 * return TRUE if any memory was released
832 */
833 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100834mf_release_all(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835{
836 buf_T *buf;
837 memfile_T *mfp;
838 bhdr_T *hp;
839 int retval = FALSE;
840
Bram Moolenaar29323592016-07-24 22:04:11 +0200841 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 {
843 mfp = buf->b_ml.ml_mfp;
844 if (mfp != NULL)
845 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100846 // If no swap file yet, may open one
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 if (mfp->mf_fd < 0 && buf->b_may_swap)
848 ml_open_file(buf);
849
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100850 // only if there is a swapfile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 if (mfp->mf_fd >= 0)
852 {
853 for (hp = mfp->mf_used_last; hp != NULL; )
854 {
855 if (!(hp->bh_flags & BH_LOCKED)
856 && (!(hp->bh_flags & BH_DIRTY)
857 || mf_write(mfp, hp) != FAIL))
858 {
859 mf_rem_used(mfp, hp);
860 mf_rem_hash(mfp, hp);
861 mf_free_bhdr(hp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100862 hp = mfp->mf_used_last; // re-start, list was changed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 retval = TRUE;
864 }
865 else
866 hp = hp->bh_prev;
867 }
868 }
869 }
870 }
871 return retval;
872}
873
874/*
875 * Allocate a block header and a block of memory for it
876 */
877 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100878mf_alloc_bhdr(memfile_T *mfp, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879{
880 bhdr_T *hp;
881
Bram Moolenaarc799fe22019-05-28 23:08:19 +0200882 if ((hp = ALLOC_ONE(bhdr_T)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883 {
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +0000884 if ((hp->bh_data = alloc((size_t)mfp->mf_page_size * page_count))
885 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100887 vim_free(hp); // not enough memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 return NULL;
889 }
890 hp->bh_page_count = page_count;
891 }
892 return hp;
893}
894
895/*
896 * Free a block header and the block of memory for it
897 */
898 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100899mf_free_bhdr(bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900{
901 vim_free(hp->bh_data);
902 vim_free(hp);
903}
904
905/*
906 * insert entry *hp in the free list
907 */
908 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100909mf_ins_free(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910{
911 hp->bh_next = mfp->mf_free_first;
912 mfp->mf_free_first = hp;
913}
914
915/*
916 * remove the first entry from the free list and return a pointer to it
917 * Note: caller must check that mfp->mf_free_first is not NULL!
918 */
919 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100920mf_rem_free(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921{
922 bhdr_T *hp;
923
924 hp = mfp->mf_free_first;
925 mfp->mf_free_first = hp->bh_next;
926 return hp;
927}
928
929/*
930 * read a block from disk
931 *
932 * Return FAIL for failure, OK otherwise
933 */
934 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100935mf_read(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200937 off_T offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 unsigned page_size;
939 unsigned size;
940
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100941 if (mfp->mf_fd < 0) // there is no file, can't read
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 return FAIL;
943
944 page_size = mfp->mf_page_size;
Bram Moolenaar8767f522016-07-01 17:17:39 +0200945 offset = (off_T)page_size * hp->bh_bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 size = page_size * hp->bh_page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +0200947 if (vim_lseek(mfp->mf_fd, offset, SEEK_SET) != offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000949 PERROR(_(e_seek_error_in_swap_file_read));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 return FAIL;
951 }
Bram Moolenaar540fc6f2010-12-17 16:27:16 +0100952 if ((unsigned)read_eintr(mfp->mf_fd, hp->bh_data, size) != size)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000954 PERROR(_(e_read_error_in_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 return FAIL;
956 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200957
958#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100959 // Decrypt if 'key' is set and this is a data block. And when changing the
960 // key.
Bram Moolenaar4a8c2cf2015-12-19 15:28:18 +0100961 if (*mfp->mf_buffer->b_p_key != NUL || mfp->mf_old_key != NULL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200962 ml_decrypt_data(mfp, hp->bh_data, offset, size);
963#endif
964
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 return OK;
966}
967
968/*
969 * write a block to disk
970 *
971 * Return FAIL for failure, OK otherwise
972 */
973 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100974mf_write(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100976 off_T offset; // offset in the file
977 blocknr_T nr; // block nr which is being written
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 bhdr_T *hp2;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100979 unsigned page_size; // number of bytes in a page
980 unsigned page_count; // number of pages written
981 unsigned size; // number of bytes written
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982
Bram Moolenaarb58a4b92019-05-27 23:36:21 +0200983 if (mfp->mf_fd < 0 && !mfp->mf_reopen)
984 // there is no file and there was no file, can't write
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 return FAIL;
986
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100987 if (hp->bh_bnum < 0) // must assign file block number
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 if (mf_trans_add(mfp, hp) == FAIL)
989 return FAIL;
990
991 page_size = mfp->mf_page_size;
992
993 /*
994 * We don't want gaps in the file. Write the blocks in front of *hp
995 * to extend the file.
996 * If block 'mf_infile_count' is not in the hash list, it has been
997 * freed. Fill the space in the file with data from the current block.
998 */
999 for (;;)
1000 {
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001001 int attempt;
1002
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 nr = hp->bh_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001004 if (nr > mfp->mf_infile_count) // beyond end of file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 {
1006 nr = mfp->mf_infile_count;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001007 hp2 = mf_find_hash(mfp, nr); // NULL caught below
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 }
1009 else
1010 hp2 = hp;
1011
Bram Moolenaar8767f522016-07-01 17:17:39 +02001012 offset = (off_T)page_size * nr;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001013 if (hp2 == NULL) // freed block, fill with dummy data
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 page_count = 1;
1015 else
1016 page_count = hp2->bh_page_count;
1017 size = page_size * page_count;
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001018
1019 for (attempt = 1; attempt <= 2; ++attempt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 {
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001021 if (mfp->mf_fd >= 0)
1022 {
1023 if (vim_lseek(mfp->mf_fd, offset, SEEK_SET) != offset)
1024 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +00001025 PERROR(_(e_seek_error_in_swap_file_write));
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001026 return FAIL;
1027 }
1028 if (mf_write_block(mfp,
1029 hp2 == NULL ? hp : hp2, offset, size) == OK)
1030 break;
1031 }
1032
1033 if (attempt == 1)
1034 {
1035 // If the swap file is on a network drive, and the network
1036 // gets disconnected and then re-connected, we can maybe fix it
1037 // by closing and then re-opening the file.
1038 if (mfp->mf_fd >= 0)
1039 close(mfp->mf_fd);
1040 mfp->mf_fd = mch_open_rw((char *)mfp->mf_fname, mfp->mf_flags);
1041 mfp->mf_reopen = (mfp->mf_fd < 0);
1042 }
1043 if (attempt == 2 || mfp->mf_fd < 0)
1044 {
1045 // Avoid repeating the error message, this mostly happens when
1046 // the disk is full. We give the message again only after a
1047 // successful write or when hitting a key. We keep on trying,
1048 // in case some space becomes available.
1049 if (!did_swapwrite_msg)
Bram Moolenaar9a846fb2022-01-01 21:59:18 +00001050 emsg(_(e_write_error_in_swap_file));
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001051 did_swapwrite_msg = TRUE;
1052 return FAIL;
1053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 }
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001055
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 did_swapwrite_msg = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001057 if (hp2 != NULL) // written a non-dummy block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 hp2->bh_flags &= ~BH_DIRTY;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001059 // appended to the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 if (nr + (blocknr_T)page_count > mfp->mf_infile_count)
1061 mfp->mf_infile_count = nr + page_count;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001062 if (nr == hp->bh_bnum) // written the desired block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 break;
1064 }
1065 return OK;
1066}
1067
1068/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001069 * Write block "hp" with data size "size" to file "mfp->mf_fd".
1070 * Takes care of encryption.
1071 * Return FAIL or OK.
1072 */
1073 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001074mf_write_block(
1075 memfile_T *mfp,
1076 bhdr_T *hp,
Bram Moolenaar8767f522016-07-01 17:17:39 +02001077 off_T offset UNUSED,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001078 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001079{
1080 char_u *data = hp->bh_data;
1081 int result = OK;
1082
1083#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001084 // Encrypt if 'key' is set and this is a data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001085 if (*mfp->mf_buffer->b_p_key != NUL)
1086 {
1087 data = ml_encrypt_data(mfp, data, offset, size);
1088 if (data == NULL)
1089 return FAIL;
1090 }
1091#endif
1092
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01001093 if ((unsigned)write_eintr(mfp->mf_fd, data, size) != size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001094 result = FAIL;
1095
1096#ifdef FEAT_CRYPT
1097 if (data != hp->bh_data)
1098 vim_free(data);
1099#endif
1100
1101 return result;
1102}
1103
1104/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 * Make block number for *hp positive and add it to the translation list
1106 *
1107 * Return FAIL for failure, OK otherwise
1108 */
1109 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001110mf_trans_add(memfile_T *mfp, bhdr_T *hp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111{
1112 bhdr_T *freep;
1113 blocknr_T new_bnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 NR_TRANS *np;
1115 int page_count;
1116
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001117 if (hp->bh_bnum >= 0) // it's already positive
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 return OK;
1119
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001120 if ((np = ALLOC_ONE(NR_TRANS)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 return FAIL;
1122
1123/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001124 * Get a new number for the block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 * If the first item in the free list has sufficient pages, use its number
1126 * Otherwise use mf_blocknr_max.
1127 */
1128 freep = mfp->mf_free_first;
1129 page_count = hp->bh_page_count;
1130 if (freep != NULL && freep->bh_page_count >= page_count)
1131 {
1132 new_bnum = freep->bh_bnum;
1133 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001134 * If the page count of the free block was larger, reduce it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 * If the page count matches, remove the block from the free list
1136 */
1137 if (freep->bh_page_count > page_count)
1138 {
1139 freep->bh_bnum += page_count;
1140 freep->bh_page_count -= page_count;
1141 }
1142 else
1143 {
1144 freep = mf_rem_free(mfp);
1145 vim_free(freep);
1146 }
1147 }
1148 else
1149 {
1150 new_bnum = mfp->mf_blocknr_max;
1151 mfp->mf_blocknr_max += page_count;
1152 }
1153
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001154 np->nt_old_bnum = hp->bh_bnum; // adjust number
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 np->nt_new_bnum = new_bnum;
1156
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001157 mf_rem_hash(mfp, hp); // remove from old hash list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 hp->bh_bnum = new_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001159 mf_ins_hash(mfp, hp); // insert in new hash list
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001161 // Insert "np" into "mf_trans" hashtable with key "np->nt_old_bnum"
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001162 mf_hash_add_item(&mfp->mf_trans, (mf_hashitem_T *)np);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163
1164 return OK;
1165}
1166
1167/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02001168 * Lookup a translation from the trans lists and delete the entry.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 *
1170 * Return the positive new number when found, the old number when not found
1171 */
1172 blocknr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001173mf_trans_del(memfile_T *mfp, blocknr_T old_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 NR_TRANS *np;
1176 blocknr_T new_bnum;
1177
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001178 np = (NR_TRANS *)mf_hash_find(&mfp->mf_trans, old_nr);
1179
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001180 if (np == NULL) // not found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 return old_nr;
1182
1183 mfp->mf_neg_count--;
1184 new_bnum = np->nt_new_bnum;
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001185
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001186 // remove entry from the trans list
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001187 mf_hash_rem_item(&mfp->mf_trans, (mf_hashitem_T *)np);
1188
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 vim_free(np);
1190
1191 return new_bnum;
1192}
1193
1194/*
1195 * Set mfp->mf_ffname according to mfp->mf_fname and some other things.
1196 * Only called when creating or renaming the swapfile. Either way it's a new
1197 * name so we must work out the full path name.
1198 */
1199 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001200mf_set_ffname(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201{
1202 mfp->mf_ffname = FullName_save(mfp->mf_fname, FALSE);
1203}
1204
1205/*
1206 * Make the name of the file used for the memfile a full path.
1207 * Used before doing a :cd
1208 */
1209 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001210mf_fullname(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211{
1212 if (mfp != NULL && mfp->mf_fname != NULL && mfp->mf_ffname != NULL)
1213 {
1214 vim_free(mfp->mf_fname);
1215 mfp->mf_fname = mfp->mf_ffname;
1216 mfp->mf_ffname = NULL;
1217 }
1218}
1219
1220/*
1221 * return TRUE if there are any translations pending for 'mfp'
1222 */
1223 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001224mf_need_trans(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225{
1226 return (mfp->mf_fname != NULL && mfp->mf_neg_count > 0);
1227}
1228
1229/*
1230 * Open a swap file for a memfile.
1231 * The "fname" must be in allocated memory, and is consumed (also when an
1232 * error occurs).
1233 */
1234 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001235mf_do_open(
1236 memfile_T *mfp,
1237 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001238 int flags) // flags for open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239{
1240#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02001241 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242#endif
1243
1244 mfp->mf_fname = fname;
1245
1246 /*
1247 * Get the full path name before the open, because this is
1248 * not possible after the open on the Amiga.
1249 * fname cannot be NameBuff, because it must have been allocated.
1250 */
1251 mf_set_ffname(mfp);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001252#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001254 * A ":!cd e:xxx" may change the directory without us knowing, use the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 * full pathname always. Careful: This frees fname!
1256 */
1257 mf_fullname(mfp);
1258#endif
1259
1260#ifdef HAVE_LSTAT
1261 /*
1262 * Extra security check: When creating a swap file it really shouldn't
1263 * exist yet. If there is a symbolic link, this is most likely an attack.
1264 */
1265 if ((flags & O_CREAT) && mch_lstat((char *)mfp->mf_fname, &sb) >= 0)
1266 {
1267 mfp->mf_fd = -1;
Bram Moolenaareaaac012022-01-02 17:00:40 +00001268 emsg(_(e_swap_file_already_exists_symlink_attack));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 }
1270 else
1271#endif
1272 {
1273 /*
1274 * try to open the file
1275 */
Bram Moolenaara5792f52005-11-23 21:25:05 +00001276 flags |= O_EXTRA | O_NOFOLLOW;
Bram Moolenaar4f974752019-02-17 17:44:42 +01001277#ifdef MSWIN
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001278 // Prevent handle inheritance that cause problems with Cscope
1279 // (swap file may not be deleted if cscope connection was open after
1280 // the file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 flags |= O_NOINHERIT;
1282#endif
Bram Moolenaarb58a4b92019-05-27 23:36:21 +02001283 mfp->mf_flags = flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284 mfp->mf_fd = mch_open_rw((char *)mfp->mf_fname, flags);
1285 }
1286
1287 /*
1288 * If the file cannot be opened, use memory only
1289 */
1290 if (mfp->mf_fd < 0)
1291 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001292 VIM_CLEAR(mfp->mf_fname);
1293 VIM_CLEAR(mfp->mf_ffname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 }
1295 else
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00001296 {
Bram Moolenaarf05da212009-11-17 16:13:15 +00001297#ifdef HAVE_FD_CLOEXEC
1298 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
1299 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +01001300 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +00001301#endif
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02001302#if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00001303 mch_copy_sec(fname, mfp->mf_fname);
1304#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001305 mch_hide(mfp->mf_fname); // try setting the 'hidden' flag
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00001306 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307}
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001308
1309/*
1310 * Implementation of mf_hashtab_T follows.
1311 */
1312
1313/*
1314 * The number of buckets in the hashtable is increased by a factor of
1315 * MHT_GROWTH_FACTOR when the average number of items per bucket
1316 * exceeds 2 ^ MHT_LOG_LOAD_FACTOR.
1317 */
1318#define MHT_LOG_LOAD_FACTOR 6
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001319#define MHT_GROWTH_FACTOR 2 // must be a power of two
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001320
1321/*
1322 * Initialize an empty hash table.
1323 */
1324 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001325mf_hash_init(mf_hashtab_T *mht)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001326{
Bram Moolenaara80faa82020-04-12 19:37:17 +02001327 CLEAR_POINTER(mht);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001328 mht->mht_buckets = mht->mht_small_buckets;
1329 mht->mht_mask = MHT_INIT_SIZE - 1;
1330}
1331
1332/*
1333 * Free the array of a hash table. Does not free the items it contains!
1334 * The hash table must not be used again without another mf_hash_init() call.
1335 */
1336 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001337mf_hash_free(mf_hashtab_T *mht)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001338{
1339 if (mht->mht_buckets != mht->mht_small_buckets)
1340 vim_free(mht->mht_buckets);
1341}
1342
1343/*
1344 * Free the array of a hash table and all the items it contains.
1345 */
1346 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001347mf_hash_free_all(mf_hashtab_T *mht)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001348{
1349 long_u idx;
1350 mf_hashitem_T *mhi;
1351 mf_hashitem_T *next;
1352
1353 for (idx = 0; idx <= mht->mht_mask; idx++)
1354 for (mhi = mht->mht_buckets[idx]; mhi != NULL; mhi = next)
1355 {
1356 next = mhi->mhi_next;
1357 vim_free(mhi);
1358 }
1359
1360 mf_hash_free(mht);
1361}
1362
1363/*
1364 * Find "key" in hashtable "mht".
1365 * Returns a pointer to a mf_hashitem_T or NULL if the item was not found.
1366 */
1367 static mf_hashitem_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001368mf_hash_find(mf_hashtab_T *mht, blocknr_T key)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001369{
1370 mf_hashitem_T *mhi;
1371
1372 mhi = mht->mht_buckets[key & mht->mht_mask];
1373 while (mhi != NULL && mhi->mhi_key != key)
1374 mhi = mhi->mhi_next;
1375
1376 return mhi;
1377}
1378
1379/*
1380 * Add item "mhi" to hashtable "mht".
1381 * "mhi" must not be NULL.
1382 */
1383 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001384mf_hash_add_item(mf_hashtab_T *mht, mf_hashitem_T *mhi)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001385{
1386 long_u idx;
1387
1388 idx = mhi->mhi_key & mht->mht_mask;
1389 mhi->mhi_next = mht->mht_buckets[idx];
1390 mhi->mhi_prev = NULL;
1391 if (mhi->mhi_next != NULL)
1392 mhi->mhi_next->mhi_prev = mhi;
1393 mht->mht_buckets[idx] = mhi;
1394
1395 mht->mht_count++;
1396
1397 /*
1398 * Grow hashtable when we have more thank 2^MHT_LOG_LOAD_FACTOR
1399 * items per bucket on average
1400 */
1401 if (mht->mht_fixed == 0
1402 && (mht->mht_count >> MHT_LOG_LOAD_FACTOR) > mht->mht_mask)
1403 {
1404 if (mf_hash_grow(mht) == FAIL)
1405 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001406 // stop trying to grow after first failure to allocate memory
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001407 mht->mht_fixed = 1;
1408 }
1409 }
1410}
1411
1412/*
1413 * Remove item "mhi" from hashtable "mht".
1414 * "mhi" must not be NULL and must have been inserted into "mht".
1415 */
1416 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001417mf_hash_rem_item(mf_hashtab_T *mht, mf_hashitem_T *mhi)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001418{
1419 if (mhi->mhi_prev == NULL)
1420 mht->mht_buckets[mhi->mhi_key & mht->mht_mask] = mhi->mhi_next;
1421 else
1422 mhi->mhi_prev->mhi_next = mhi->mhi_next;
1423
1424 if (mhi->mhi_next != NULL)
1425 mhi->mhi_next->mhi_prev = mhi->mhi_prev;
1426
1427 mht->mht_count--;
1428
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001429 // We could shrink the table here, but it typically takes little memory,
1430 // so why bother?
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001431}
1432
1433/*
1434 * Increase number of buckets in the hashtable by MHT_GROWTH_FACTOR and
1435 * rehash items.
1436 * Returns FAIL when out of memory.
1437 */
1438 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001439mf_hash_grow(mf_hashtab_T *mht)
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001440{
1441 long_u i, j;
1442 int shift;
1443 mf_hashitem_T *mhi;
1444 mf_hashitem_T *tails[MHT_GROWTH_FACTOR];
1445 mf_hashitem_T **buckets;
1446 size_t size;
1447
1448 size = (mht->mht_mask + 1) * MHT_GROWTH_FACTOR * sizeof(void *);
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001449 buckets = lalloc_clear(size, FALSE);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001450 if (buckets == NULL)
1451 return FAIL;
1452
1453 shift = 0;
1454 while ((mht->mht_mask >> shift) != 0)
1455 shift++;
1456
1457 for (i = 0; i <= mht->mht_mask; i++)
1458 {
1459 /*
1460 * Traverse the items in the i-th original bucket and move them into
1461 * MHT_GROWTH_FACTOR new buckets, preserving their relative order
1462 * within each new bucket. Preserving the order is important because
1463 * mf_get() tries to keep most recently used items at the front of
1464 * each bucket.
1465 *
1466 * Here we strongly rely on the fact the hashes are computed modulo
1467 * a power of two.
1468 */
1469
Bram Moolenaara80faa82020-04-12 19:37:17 +02001470 CLEAR_FIELD(tails);
Bram Moolenaarb05b10a2011-03-22 18:10:45 +01001471
1472 for (mhi = mht->mht_buckets[i]; mhi != NULL; mhi = mhi->mhi_next)
1473 {
1474 j = (mhi->mhi_key >> shift) & (MHT_GROWTH_FACTOR - 1);
1475 if (tails[j] == NULL)
1476 {
1477 buckets[i + (j << shift)] = mhi;
1478 tails[j] = mhi;
1479 mhi->mhi_prev = NULL;
1480 }
1481 else
1482 {
1483 tails[j]->mhi_next = mhi;
1484 mhi->mhi_prev = tails[j];
1485 tails[j] = mhi;
1486 }
1487 }
1488
1489 for (j = 0; j < MHT_GROWTH_FACTOR; j++)
1490 if (tails[j] != NULL)
1491 tails[j]->mhi_next = NULL;
1492 }
1493
1494 if (mht->mht_buckets != mht->mht_small_buckets)
1495 vim_free(mht->mht_buckets);
1496
1497 mht->mht_buckets = buckets;
1498 mht->mht_mask = (mht->mht_mask + 1) * MHT_GROWTH_FACTOR - 1;
1499
1500 return OK;
1501}