Line data Source code
1 : /*
2 : * SPDX-License-Identifier: MPL-2.0
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * Copyright 2024 MonetDB Foundation;
9 : * Copyright August 2008 - 2023 MonetDB B.V.;
10 : * Copyright 1997 - July 2008 CWI.
11 : */
12 :
13 : /*
14 : * @f gdk_heap
15 : * @a Peter Boncz, Wilko Quak
16 : * @+ Atom Heaps
17 : * Heaps are the basic mass storage structure of Monet. A heap is a
18 : * handle to a large, possibly huge, contiguous area of main memory,
19 : * that can be allocated in various ways (discriminated by the
20 : * heap->storage field):
21 : *
22 : * @table @code
23 : * @item STORE_MEM: malloc-ed memory
24 : * small (or rather: not huge) heaps are allocated with GDKmalloc.
25 : * Notice that GDKmalloc may redirect big requests to anonymous
26 : * virtual memory to prevent @emph{memory fragmentation} in the malloc
27 : * library (see gdk_utils.c).
28 : *
29 : * @item STORE_MMAP: read-only mapped region
30 : * this is a file on disk that is mapped into virtual memory. This is
31 : * normally done MAP_SHARED, so we can use msync() to commit dirty
32 : * data using the OS virtual memory management.
33 : *
34 : * @item STORE_PRIV: read-write mapped region
35 : * in order to preserve ACID properties, we use a different memory
36 : * mapping on virtual memory that is writable. This is because in case
37 : * of a crash on a dirty STORE_MMAP heap, the OS may have written some
38 : * of the dirty pages to disk and other not (but it is impossible to
39 : * determine which). The OS MAP_PRIVATE mode does not modify the file
40 : * on which is being mapped, rather creates substitute pages
41 : * dynamically taken from the swap file when modifications occur. This
42 : * is the only way to make writing to mmap()-ed regions safe. To save
43 : * changes, we created a new file X.new; as some OS-es do not allow to
44 : * write into a file that has a mmap open on it (e.g. Windows). Such
45 : * X.new files take preference over X files when opening them.
46 : * @end table
47 : * Read also the discussion in BATsetaccess (gdk_bat.c).
48 : */
49 : #include "monetdb_config.h"
50 : #include "gdk.h"
51 : #include "gdk_private.h"
52 : #include "mutils.h"
53 :
54 : static void *
55 1552 : HEAPcreatefile(int farmid, size_t *maxsz, const char *fn)
56 : {
57 1552 : void *base = NULL;
58 1552 : char *path = NULL;
59 1552 : int fd;
60 :
61 1552 : if (farmid != NOFARM) {
62 : /* call GDKfilepath once here instead of twice inside
63 : * the calls to GDKfdlocate and GDKload */
64 1082 : if ((path = GDKfilepath(farmid, BATDIR, fn, NULL)) == NULL)
65 : return NULL;
66 : fn = path;
67 : }
68 : /* round up to multiple of GDK_mmap_pagesize */
69 1551 : fd = GDKfdlocate(NOFARM, fn, "wb", NULL);
70 1552 : if (fd >= 0) {
71 1552 : close(fd);
72 1552 : base = GDKload(NOFARM, fn, NULL, *maxsz, maxsz, STORE_MMAP);
73 : }
74 1552 : GDKfree(path);
75 1552 : return base;
76 : }
77 :
78 : static char *
79 38628 : decompose_filename(str nme)
80 : {
81 38628 : char *ext;
82 :
83 38628 : ext = strchr(nme, '.'); /* extract base and ext from heap file name */
84 38628 : if (ext) {
85 38628 : *ext++ = 0;
86 : }
87 38628 : return ext;
88 : }
89 :
90 : /* this function is called with the theaplock held */
91 : gdk_return
92 37173 : HEAPgrow(Heap **hp, size_t size, bool mayshare)
93 : {
94 37173 : Heap *new;
95 :
96 37173 : ATOMIC_BASE_TYPE refs = ATOMIC_GET(&(*hp)->refs);
97 37173 : if ((refs & HEAPREFS) == 1) {
98 37105 : return HEAPextend(*hp, size, mayshare);
99 : }
100 68 : new = GDKmalloc(sizeof(Heap));
101 68 : if (new != NULL) {
102 68 : Heap *old = *hp;
103 68 : *new = (Heap) {
104 68 : .farmid = old->farmid,
105 : .dirty = true,
106 68 : .parentid = old->parentid,
107 68 : .wasempty = old->wasempty,
108 68 : .hasfile = old->hasfile,
109 68 : .refs = ATOMIC_VAR_INIT(1 | (refs & HEAPREMOVE)),
110 : };
111 68 : memcpy(new->filename, old->filename, sizeof(new->filename));
112 68 : if (HEAPalloc(new, size, 1) == GDK_SUCCEED) {
113 68 : new->free = old->free;
114 68 : new->cleanhash = old->cleanhash;
115 68 : if (old->free > 0 &&
116 63 : (new->storage == STORE_MEM || old->storage == STORE_MEM))
117 41 : memcpy(new->base, old->base, old->free);
118 : /* else both are STORE_MMAP and refer to the
119 : * same file and so we don't need to copy */
120 :
121 : /* replace old heap with new */
122 68 : HEAPdecref(*hp, false);
123 68 : *hp = new;
124 : } else {
125 0 : GDKfree(new);
126 0 : new = NULL;
127 : }
128 : }
129 68 : return new ? GDK_SUCCEED : GDK_FAIL;
130 : }
131 :
132 : /*
133 : * @- HEAPalloc
134 : *
135 : * Normally, we use GDKmalloc for creating a new heap. Huge heaps,
136 : * though, come from memory mapped files that we create with a large
137 : * fallocate. This is fast, and leads to files-with-holes on Unixes (on
138 : * Windows, it actually always performs I/O which is not nice).
139 : */
140 : gdk_return
141 6849818 : HEAPalloc(Heap *h, size_t nitems, size_t itemsize)
142 : {
143 6849818 : size_t size = 0;
144 6849818 : QryCtx *qc = h->farmid == 1 ? MT_thread_get_qry_ctx() : NULL;
145 :
146 6848546 : h->base = NULL;
147 6848546 : h->size = 1;
148 6848546 : if (itemsize) {
149 : /* check for overflow */
150 6848546 : if (nitems > BUN_NONE / itemsize) {
151 0 : GDKerror("allocating more than heap can accommodate\n");
152 0 : return GDK_FAIL;
153 : }
154 6848546 : h->size = MAX(1, nitems) * itemsize;
155 : }
156 6848546 : h->free = 0;
157 6848546 : h->cleanhash = false;
158 :
159 : #ifdef SIZE_CHECK_IN_HEAPS_ONLY
160 6848546 : if (GDKvm_cursize() + h->size >= GDK_vm_maxsize &&
161 0 : !MT_thread_override_limits()) {
162 0 : GDKerror("allocating too much memory (current: %zu, requested: %zu, limit: %zu)\n", GDKvm_cursize(), h->size, GDK_vm_maxsize);
163 0 : return GDK_FAIL;
164 : }
165 : #endif
166 :
167 6847143 : size_t allocated;
168 6847143 : if (GDKinmemory(h->farmid) ||
169 13673119 : ((allocated = GDKmem_cursize()) + h->size < GDK_mem_maxsize &&
170 6836223 : h->size < (h->farmid == 0 ? GDK_mmap_minsize_persistent : GDK_mmap_minsize_transient) &&
171 6837254 : h->size < ((GDK_mem_maxsize - allocated) >> 6))) {
172 6847296 : h->storage = STORE_MEM;
173 6847296 : size = h->size;
174 6847296 : if (qc != NULL) {
175 3900297 : ATOMIC_BASE_TYPE sz = ATOMIC_ADD(&qc->datasize, size);
176 3900297 : sz += size;
177 3900297 : if (qc->maxmem > 0 && sz > qc->maxmem) {
178 0 : ATOMIC_SUB(&qc->datasize, size);
179 0 : GDKerror("Query using too much memory.\n");
180 0 : return GDK_FAIL;
181 : }
182 : }
183 6847296 : h->base = GDKmalloc(size);
184 6844087 : TRC_DEBUG(HEAP, "%s %zu %p\n", h->filename, size, h->base);
185 6844087 : if (h->base == NULL && qc != NULL)
186 0 : ATOMIC_SUB(&qc->datasize, size);
187 : }
188 :
189 6843298 : if (h->base == NULL && !GDKinmemory(h->farmid)) {
190 470 : char *nme = GDKfilepath(h->farmid, BATDIR, h->filename, NULL);
191 470 : if (nme == NULL)
192 : return GDK_FAIL;
193 470 : h->storage = STORE_MMAP;
194 470 : h->size = (h->size + GDK_mmap_pagesize - 1) & ~(GDK_mmap_pagesize - 1);
195 470 : size = h->size;
196 470 : if (qc != NULL) {
197 27 : ATOMIC_BASE_TYPE sz = ATOMIC_ADD(&qc->datasize, size);
198 27 : sz += size;
199 27 : if (qc->maxmem > 0 && sz > qc->maxmem) {
200 0 : ATOMIC_SUB(&qc->datasize, size);
201 0 : GDKfree(nme);
202 0 : GDKerror("Query using too much memory.\n");
203 0 : return GDK_FAIL;
204 : }
205 : }
206 470 : h->base = HEAPcreatefile(NOFARM, &h->size, nme);
207 470 : h->hasfile = true;
208 470 : if (h->base == NULL) {
209 0 : if (qc != NULL)
210 0 : ATOMIC_SUB(&qc->datasize, size);
211 : /* remove file we may just have created
212 : * it may or may not exist, depending on what
213 : * failed */
214 0 : (void) MT_remove(nme);
215 0 : GDKfree(nme);
216 0 : h->hasfile = false; /* just removed it */
217 0 : GDKerror("Insufficient space for HEAP of %zu bytes.", h->size);
218 0 : return GDK_FAIL;
219 : }
220 470 : GDKfree(nme);
221 470 : TRC_DEBUG(HEAP, "%s %zu %p (mmap)\n", h->filename, size, h->base);
222 : }
223 6843298 : h->newstorage = h->storage;
224 6843298 : return GDK_SUCCEED;
225 : }
226 :
227 : /* Extend the allocated space of the heap H to be at least SIZE bytes.
228 : * If the heap grows beyond a threshold and a filename is known, the
229 : * heap is converted from allocated memory to a memory-mapped file.
230 : * When switching from allocated to memory mapped, if MAYSHARE is set,
231 : * the heap does not have to be copy-on-write.
232 : *
233 : * The function returns 0 on success, -1 on failure.
234 : *
235 : * When extending a memory-mapped heap, we use the function MT_mremap
236 : * (which see). When extending an allocated heap, we use GDKrealloc.
237 : * If that fails, we switch to memory mapped, even when the size is
238 : * below the threshold.
239 : *
240 : * When converting from allocated to memory mapped, we try several
241 : * strategies. First we try to create the memory map, and if that
242 : * works, copy the data and free the old memory. If this fails, we
243 : * first write the data to disk, free the memory, and then try to
244 : * memory map the saved data. */
245 : gdk_return
246 49356 : HEAPextend(Heap *h, size_t size, bool mayshare)
247 : {
248 49356 : size_t osize = h->size;
249 49356 : size_t xsize;
250 49356 : QryCtx *qc = h->farmid == 1 ? MT_thread_get_qry_ctx() : NULL;
251 :
252 49348 : if (size <= h->size)
253 : return GDK_SUCCEED; /* nothing to do */
254 :
255 38669 : char nme[sizeof(h->filename)], *ext;
256 38669 : const char *failure = "None";
257 :
258 38669 : if (GDKinmemory(h->farmid)) {
259 44 : strcpy_len(nme, ":memory:", sizeof(nme));
260 44 : ext = "ext";
261 : } else {
262 38628 : strcpy_len(nme, h->filename, sizeof(nme));
263 38626 : ext = decompose_filename(nme);
264 : }
265 38668 : failure = "size > h->size";
266 :
267 : #ifdef SIZE_CHECK_IN_HEAPS_ONLY
268 38668 : if (GDKvm_cursize() + size - h->size >= GDK_vm_maxsize &&
269 0 : !MT_thread_override_limits()) {
270 0 : GDKerror("allocating too much memory (current: %zu, requested: %zu, limit: %zu)\n", GDKvm_cursize(), size - h->size, GDK_vm_maxsize);
271 0 : return GDK_FAIL;
272 : }
273 : #endif
274 :
275 38670 : if (h->storage != STORE_MEM) {
276 560 : char *p;
277 560 : char *path;
278 :
279 560 : assert(h->hasfile);
280 560 : TRC_DEBUG(HEAP, "Extending %s mmapped heap (%s)\n", h->storage == STORE_MMAP ? "shared" : "privately", h->filename);
281 : /* extend memory mapped file */
282 560 : if ((path = GDKfilepath(h->farmid, BATDIR, nme, ext)) == NULL) {
283 : return GDK_FAIL;
284 : }
285 560 : size = (size + GDK_mmap_pagesize - 1) & ~(GDK_mmap_pagesize - 1);
286 560 : if (size == 0)
287 0 : size = GDK_mmap_pagesize;
288 :
289 560 : xsize = size - osize;
290 :
291 560 : if (qc != NULL) {
292 138 : ATOMIC_BASE_TYPE sz = ATOMIC_ADD(&qc->datasize, xsize);
293 138 : sz += size - osize;
294 138 : if (qc->maxmem > 0 && sz > qc->maxmem) {
295 0 : GDKerror("Query using too much memory.\n");
296 0 : ATOMIC_SUB(&qc->datasize, xsize);
297 0 : GDKfree(path);
298 0 : return GDK_FAIL;
299 : }
300 : }
301 1120 : p = GDKmremap(path,
302 : h->storage == STORE_PRIV ?
303 : MMAP_COPY | MMAP_READ | MMAP_WRITE :
304 : MMAP_READ | MMAP_WRITE,
305 : h->base, h->size, &size);
306 560 : GDKfree(path);
307 560 : if (p) {
308 560 : h->size = size;
309 560 : h->base = p;
310 560 : return GDK_SUCCEED; /* success */
311 : }
312 0 : if (qc != NULL)
313 0 : ATOMIC_SUB(&qc->datasize, xsize);
314 : failure = "GDKmremap() failed";
315 : } else {
316 : /* extend a malloced heap, possibly switching over to
317 : * file-mapped storage */
318 38110 : Heap bak = *h;
319 38110 : size_t allocated;
320 38110 : bool must_mmap = (!GDKinmemory(h->farmid) &&
321 38058 : (h->newstorage != STORE_MEM ||
322 76124 : (allocated = GDKmem_cursize()) + size >= GDK_mem_maxsize ||
323 38064 : size >= (h->farmid == 0 ? GDK_mmap_minsize_persistent : GDK_mmap_minsize_transient) ||
324 36968 : size >= ((GDK_mem_maxsize - allocated) >> 6)));
325 :
326 38099 : h->size = size;
327 38099 : xsize = size - osize;
328 :
329 : /* try GDKrealloc if the heap size stays within
330 : * reasonable limits */
331 38099 : if (!must_mmap) {
332 36995 : if (qc != NULL) {
333 11510 : ATOMIC_BASE_TYPE sz = ATOMIC_ADD(&qc->datasize, xsize);
334 11510 : sz += xsize;
335 11510 : if (qc->maxmem > 0 && sz > qc->maxmem) {
336 0 : GDKerror("Query using too much memory.\n");
337 0 : ATOMIC_SUB(&qc->datasize, xsize);
338 0 : *h = bak;
339 38117 : return GDK_FAIL;
340 : }
341 : }
342 36995 : h->newstorage = h->storage = STORE_MEM;
343 36995 : h->base = GDKrealloc(h->base, size);
344 37011 : TRC_DEBUG(HEAP, "Extending malloced heap %s %zu->%zu %p->%p\n", h->filename, bak.size, size, bak.base, h->base);
345 37011 : if (h->base) {
346 : return GDK_SUCCEED; /* success */
347 : }
348 : /* bak.base is still valid and may get restored */
349 0 : failure = "h->storage == STORE_MEM && !must_map && !h->base";
350 0 : if (qc != NULL)
351 0 : ATOMIC_SUB(&qc->datasize, xsize);
352 : }
353 :
354 1104 : if (!GDKinmemory(h->farmid)) {
355 : /* too big: convert it to a disk-based temporary heap */
356 :
357 1105 : assert(h->storage == STORE_MEM);
358 1105 : assert(ext != NULL);
359 : /* if the heap file already exists, we want to switch
360 : * to STORE_PRIV (copy-on-write memory mapped files),
361 : * but if the heap file doesn't exist yet, the BAT is
362 : * new and we can use STORE_MMAP */
363 1105 : int fd = GDKfdlocate(h->farmid, nme, "rb", ext);
364 1104 : if (fd >= 0) {
365 24 : assert(h->hasfile);
366 24 : close(fd);
367 24 : fd = GDKfdlocate(h->farmid, nme, "wb", ext);
368 24 : if (fd >= 0) {
369 24 : gdk_return rc = GDKextendf(fd, size, nme);
370 24 : close(fd);
371 24 : if (rc != GDK_SUCCEED) {
372 0 : failure = "h->storage == STORE_MEM && can_map && fd >= 0 && GDKextendf() != GDK_SUCCEED";
373 0 : goto failed;
374 : }
375 24 : h->storage = h->newstorage == STORE_MMAP && !mayshare ? STORE_PRIV : h->newstorage;
376 : /* make sure we really MMAP */
377 24 : if (must_mmap && h->newstorage == STORE_MEM)
378 24 : h->storage = STORE_MMAP;
379 24 : h->newstorage = h->storage;
380 :
381 24 : h->base = NULL;
382 24 : TRC_DEBUG(HEAP, "Converting malloced to %s mmapped heap %s\n", h->newstorage == STORE_MMAP ? "shared" : "privately", h->filename);
383 : /* try to allocate a memory-mapped based
384 : * heap */
385 24 : if (HEAPload(h, nme, ext, false) == GDK_SUCCEED) {
386 : /* copy data to heap and free old
387 : * memory */
388 24 : memcpy(h->base, bak.base, bak.free);
389 24 : HEAPfree(&bak, false);
390 24 : return GDK_SUCCEED;
391 : }
392 : failure = "h->storage == STORE_MEM && can_map && fd >= 0 && HEAPload() != GDK_SUCCEED";
393 : /* we failed */
394 : } else {
395 : failure = "h->storage == STORE_MEM && can_map && fd < 0";
396 : }
397 : } else {
398 : /* no pre-existing heap file, so create a new
399 : * one */
400 1080 : if (qc != NULL) {
401 12 : h->size = (h->size + GDK_mmap_pagesize - 1) & ~(GDK_mmap_pagesize - 1);
402 12 : xsize = h->size;
403 12 : ATOMIC_BASE_TYPE sz = ATOMIC_ADD(&qc->datasize, xsize);
404 12 : sz += h->size;
405 12 : if (qc->maxmem > 0 && sz > qc->maxmem) {
406 0 : GDKerror("Query using too much memory.\n");
407 0 : sz = ATOMIC_ADD(&qc->datasize, xsize);
408 0 : *h = bak;
409 0 : return GDK_FAIL;
410 : }
411 : }
412 1080 : h->base = HEAPcreatefile(h->farmid, &h->size, h->filename);
413 1082 : h->hasfile = true;
414 1082 : if (h->base) {
415 1082 : h->newstorage = h->storage = STORE_MMAP;
416 1082 : if (bak.free > 0)
417 44 : memcpy(h->base, bak.base, bak.free);
418 1082 : HEAPfree(&bak, false);
419 1082 : return GDK_SUCCEED;
420 : }
421 0 : failure = "h->storage == STORE_MEM && can_map && fd >= 0 && HEAPcreatefile() == NULL";
422 0 : if (qc != NULL)
423 0 : ATOMIC_SUB(&qc->datasize, xsize);
424 : }
425 : }
426 0 : failed:
427 0 : if (h->hasfile && !bak.hasfile) {
428 0 : char *path = GDKfilepath(h->farmid, BATDIR, nme, ext);
429 0 : if (path) {
430 0 : MT_remove(path);
431 0 : GDKfree(path);
432 : } else {
433 : /* couldn't remove, so now we have a file */
434 0 : bak.hasfile = true;
435 : }
436 : }
437 0 : *h = bak;
438 : }
439 0 : GDKerror("failed to extend to %zu for %s%s%s: %s\n",
440 : size, nme, ext ? "." : "", ext ? ext : "", failure);
441 0 : return GDK_FAIL;
442 : }
443 :
444 : /* grow the string offset heap so that the value v fits (i.e. wide
445 : * enough to fit the value), and it has space for at least cap elements;
446 : * copy ncopy BUNs, or up to the heap size, whichever is smaller */
447 : gdk_return
448 69521 : GDKupgradevarheap(BAT *b, var_t v, BUN cap, BUN ncopy)
449 : {
450 69521 : uint8_t shift = b->tshift;
451 69521 : uint16_t width = b->twidth;
452 69521 : uint8_t *pc;
453 69521 : uint16_t *ps;
454 69521 : uint32_t *pi;
455 : #if SIZEOF_VAR_T == 8
456 69521 : uint64_t *pl;
457 : #endif
458 69521 : size_t i, n;
459 69521 : size_t newsize;
460 69521 : bat bid = b->batCacheid;
461 69521 : Heap *old, *new;
462 :
463 69521 : old = b->theap;
464 : // assert(old->storage == STORE_MEM);
465 69521 : assert(old->parentid == b->batCacheid);
466 69521 : assert(b->tbaseoff == 0);
467 69521 : assert(width != 0);
468 69521 : assert(v >= GDK_VAROFFSET);
469 :
470 90323 : while (width < SIZEOF_VAR_T && (width <= 2 ? v - GDK_VAROFFSET : v) >= ((var_t) 1 << (8 * width))) {
471 20802 : width <<= 1;
472 20802 : shift++;
473 : }
474 : /* if cap(acity) given (we check whether it is larger than the
475 : * old), then grow to cap */
476 69521 : if (cap > (old->size >> b->tshift))
477 2179 : newsize = cap << shift;
478 : else
479 67342 : newsize = (old->size >> b->tshift) << shift;
480 69521 : if (b->twidth == width) {
481 49624 : if (newsize <= old->size) {
482 : /* nothing to do */
483 48384 : if (cap > b->batCapacity)
484 0 : BATsetcapacity(b, cap);
485 48384 : return GDK_SUCCEED;
486 : }
487 1240 : return BATextend(b, newsize >> shift);
488 : }
489 :
490 19897 : n = MIN(ncopy, old->size >> b->tshift);
491 :
492 29420 : MT_thread_setalgorithm(n ? "widen offset heap" : "widen empty offset heap");
493 :
494 19898 : new = GDKmalloc(sizeof(Heap));
495 19894 : if (new == NULL)
496 : return GDK_FAIL;
497 19894 : *new = (Heap) {
498 19894 : .farmid = old->farmid,
499 : .dirty = true,
500 19894 : .parentid = old->parentid,
501 19894 : .wasempty = old->wasempty,
502 19894 : .refs = ATOMIC_VAR_INIT(1 | (ATOMIC_GET(&old->refs) & HEAPREMOVE)),
503 : };
504 19894 : settailname(new, BBP_physical(b->batCacheid), b->ttype, width);
505 19895 : if (HEAPalloc(new, newsize, 1) != GDK_SUCCEED) {
506 0 : GDKfree(new);
507 0 : return GDK_FAIL;
508 : }
509 : /* HEAPalloc initialized .free, so we need to set it after */
510 19898 : new->free = old->free << (shift - b->tshift);
511 : /* per the above, width > b->twidth, so certain combinations are
512 : * impossible */
513 19898 : switch (width) {
514 18012 : case 2:
515 18012 : ps = (uint16_t *) new->base;
516 18012 : switch (b->twidth) {
517 18012 : case 1:
518 18012 : pc = (uint8_t *) old->base;
519 1089320 : for (i = 0; i < n; i++)
520 1071308 : ps[i] = pc[i];
521 18012 : break;
522 : default:
523 0 : MT_UNREACHABLE();
524 : }
525 : #ifndef NDEBUG
526 : /* valgrind */
527 18012 : memset(ps + n, 0, new->size - n * 2);
528 : #endif
529 18012 : break;
530 1886 : case 4:
531 1886 : pi = (uint32_t *) new->base;
532 1886 : switch (b->twidth) {
533 927 : case 1:
534 927 : pc = (uint8_t *) old->base;
535 931 : for (i = 0; i < n; i++)
536 4 : pi[i] = pc[i] + GDK_VAROFFSET;
537 : break;
538 959 : case 2:
539 959 : ps = (uint16_t *) old->base;
540 1300275 : for (i = 0; i < n; i++)
541 1299316 : pi[i] = ps[i] + GDK_VAROFFSET;
542 : break;
543 : default:
544 0 : MT_UNREACHABLE();
545 : }
546 : #ifndef NDEBUG
547 : /* valgrind */
548 1886 : memset(pi + n, 0, new->size - n * 4);
549 : #endif
550 1886 : break;
551 : #if SIZEOF_VAR_T == 8
552 0 : case 8:
553 0 : pl = (uint64_t *) new->base;
554 0 : switch (b->twidth) {
555 0 : case 1:
556 0 : pc = (uint8_t *) old->base;
557 0 : for (i = 0; i < n; i++)
558 0 : pl[i] = pc[i] + GDK_VAROFFSET;
559 : break;
560 0 : case 2:
561 0 : ps = (uint16_t *) old->base;
562 0 : for (i = 0; i < n; i++)
563 0 : pl[i] = ps[i] + GDK_VAROFFSET;
564 : break;
565 0 : case 4:
566 0 : pi = (uint32_t *) old->base;
567 0 : for (i = 0; i < n; i++)
568 0 : pl[i] = pi[i];
569 : break;
570 : default:
571 0 : MT_UNREACHABLE();
572 : }
573 : #ifndef NDEBUG
574 : /* valgrind */
575 0 : memset(pl + n, 0, new->size - n * 8);
576 : #endif
577 0 : break;
578 : #endif
579 : default:
580 0 : MT_UNREACHABLE();
581 : }
582 19898 : MT_lock_set(&b->theaplock);
583 19891 : b->tshift = shift;
584 19891 : b->twidth = width;
585 19891 : if (cap > BATcapacity(b))
586 938 : BATsetcapacity(b, cap);
587 19891 : b->theap = new;
588 19891 : if (BBP_status(bid) & (BBPEXISTING|BBPDELETED) && b->oldtail == NULL) {
589 2038 : b->oldtail = old;
590 2038 : if ((ATOMIC_OR(&old->refs, DELAYEDREMOVE) & HEAPREFS) == 1) {
591 : /* we have the only reference, we can free the
592 : * memory */
593 2038 : HEAPfree(old, false);
594 : }
595 : } else {
596 17853 : ValPtr p = BATgetprop_nolock(b, (enum prop_t) 20);
597 35708 : HEAPdecref(old, p == NULL || strcmp(((Heap*) p->val.pval)->filename, old->filename) != 0);
598 : }
599 19899 : MT_lock_unset(&b->theaplock);
600 19896 : return GDK_SUCCEED;
601 : }
602 :
603 : /*
604 : * @- HEAPcopy
605 : * simple: alloc and copy. Notice that we suppose a preallocated
606 : * dst->filename (or NULL), which might be used in HEAPalloc().
607 : */
608 : gdk_return
609 1412 : HEAPcopy(Heap *dst, Heap *src, size_t offset)
610 : {
611 1412 : if (offset > src->free)
612 : offset = src->free;
613 1412 : if (HEAPalloc(dst, src->free - offset, 1) == GDK_SUCCEED) {
614 1411 : dst->free = src->free - offset;
615 1411 : memcpy(dst->base, src->base + offset, src->free - offset);
616 1411 : dst->cleanhash = src->cleanhash;
617 1411 : dst->dirty = true;
618 1411 : return GDK_SUCCEED;
619 : }
620 : return GDK_FAIL;
621 : }
622 :
623 : /* Free the memory associated with the heap H.
624 : * Unlinks (removes) the associated file if the rmheap flag is set. */
625 : void
626 12553464 : HEAPfree(Heap *h, bool rmheap)
627 : {
628 12553464 : if (h->base) {
629 6863398 : if (h->farmid == 1 && (h->storage == STORE_MEM || h->storage == STORE_MMAP || h->storage == STORE_PRIV)) {
630 6343099 : QryCtx *qc = MT_thread_get_qry_ctx();
631 6343841 : if (qc)
632 3900151 : ATOMIC_SUB(&qc->datasize, h->size);
633 : }
634 6864140 : if (h->storage == STORE_MEM) { /* plain memory */
635 6861504 : TRC_DEBUG(HEAP, "HEAPfree %s %zu %p\n", h->filename, h->size, h->base);
636 6861504 : GDKfree(h->base);
637 2636 : } else if (h->storage == STORE_CMEM) {
638 : //heap is stored in regular C memory rather than GDK memory,so we call free()
639 47 : free(h->base);
640 2589 : } else if (h->storage != STORE_NOWN) { /* mapped file, or STORE_PRIV */
641 5178 : gdk_return ret = GDKmunmap(h->base,
642 : h->storage == STORE_PRIV ?
643 : MMAP_COPY | MMAP_READ | MMAP_WRITE :
644 : MMAP_READ | MMAP_WRITE,
645 : h->size);
646 :
647 2589 : if (ret != GDK_SUCCEED) {
648 0 : GDKsyserror("HEAPfree: %s was not mapped\n",
649 : h->filename);
650 0 : assert(0);
651 : }
652 2589 : TRC_DEBUG(HEAP, "munmap(base=%p, size=%zu) = %d\n",
653 : (void *)h->base, h->size, (int) ret);
654 : }
655 : }
656 12554019 : h->base = NULL;
657 12554019 : if (rmheap && !GDKinmemory(h->farmid)) {
658 12181790 : if (h->hasfile) {
659 59103 : char *path = GDKfilepath(h->farmid, BATDIR, h->filename, NULL);
660 59103 : if (path) {
661 59103 : int ret = MT_remove(path);
662 59103 : if (ret == -1) {
663 : /* unexpectedly not present */
664 0 : perror(path);
665 : }
666 59103 : assert(ret == 0);
667 59103 : GDKfree(path);
668 59103 : h->hasfile = false;
669 : }
670 59103 : path = GDKfilepath(h->farmid, BATDIR, h->filename, "new");
671 59103 : if (path) {
672 : /* in practice, should never be present */
673 59103 : int ret = MT_remove(path);
674 59103 : if (ret == -1 && errno != ENOENT)
675 0 : perror(path);
676 59103 : assert(ret == -1 && errno == ENOENT);
677 59103 : GDKfree(path);
678 : }
679 : #ifndef NDEBUG
680 : } else {
681 12122687 : char *path = GDKfilepath(h->farmid, BATDIR, h->filename, NULL);
682 12122340 : if (path) {
683 : /* should not be present */
684 12122340 : struct stat st;
685 12122340 : assert(stat(path, &st) == -1 && errno == ENOENT);
686 12124202 : GDKfree(path);
687 : }
688 : #endif
689 : }
690 : }
691 12556656 : }
692 :
693 : void
694 61256253 : HEAPdecref(Heap *h, bool remove)
695 : {
696 61256253 : if (remove)
697 9417374 : ATOMIC_OR(&h->refs, HEAPREMOVE);
698 61256253 : ATOMIC_BASE_TYPE refs = ATOMIC_DEC(&h->refs);
699 : //printf("dec ref(%d) %p %d\n", (int)h->refs, h, h->parentid);
700 61256253 : switch (refs & HEAPREFS) {
701 9441495 : case 0:
702 9441495 : HEAPfree(h, (bool) (refs & HEAPREMOVE));
703 9442956 : GDKfree(h);
704 9442956 : break;
705 25068914 : case 1:
706 25068914 : if (refs & DELAYEDREMOVE) {
707 : /* only reference left is b->oldtail */
708 1710 : HEAPfree(h, false);
709 : }
710 : break;
711 : default:
712 : break;
713 : }
714 61258207 : }
715 :
716 : void
717 51813902 : HEAPincref(Heap *h)
718 : {
719 : //printf("inc ref(%d) %p %d\n", (int)h->refs, h, h->parentid);
720 51813902 : ATOMIC_INC(&h->refs);
721 51813902 : }
722 :
723 : /*
724 : * @- HEAPload
725 : *
726 : * If we find file X.new, we move it over X (if present) and open it.
727 : */
728 : gdk_return
729 18025 : HEAPload(Heap *h, const char *nme, const char *ext, bool trunc)
730 : {
731 18025 : size_t minsize;
732 18025 : int ret = 0;
733 18025 : char *srcpath, *dstpath;
734 18025 : lng t0;
735 18025 : const char suffix[] = ".new";
736 :
737 18025 : if (h->storage == STORE_INVALID || h->newstorage == STORE_INVALID) {
738 18001 : size_t allocated;
739 36002 : h->storage = h->newstorage = h->size < (h->farmid == 0 ? GDK_mmap_minsize_persistent : GDK_mmap_minsize_transient) &&
740 16988 : (allocated = GDKmem_cursize()) < GDK_mem_maxsize &&
741 34989 : h->size < ((GDK_mem_maxsize - allocated) >> 6) ? STORE_MEM : STORE_MMAP;
742 : }
743 :
744 18025 : minsize = (h->size + GDK_mmap_pagesize - 1) & ~(GDK_mmap_pagesize - 1);
745 18025 : if (h->storage != STORE_MEM && minsize != h->size)
746 55 : h->size = minsize;
747 :
748 : /* when a bat is made read-only, we can truncate any unused
749 : * space at the end of the heap */
750 18025 : if (trunc) {
751 : /* round up mmap heap sizes to GDK_mmap_pagesize
752 : * segments, also add some slack */
753 17328 : int fd;
754 :
755 17328 : if (minsize == 0)
756 0 : minsize = GDK_mmap_pagesize; /* minimum of one page */
757 17328 : if ((fd = GDKfdlocate(h->farmid, nme, "rb+", ext)) >= 0) {
758 17327 : struct stat stb;
759 17327 : if (fstat(fd, &stb) == 0 &&
760 17328 : stb.st_size > (off_t) minsize) {
761 0 : ret = ftruncate(fd, minsize);
762 0 : TRC_DEBUG(HEAP,
763 : "ftruncate(file=%s.%s, size=%zu) = %d\n",
764 : nme, ext, minsize, ret);
765 0 : if (ret == 0) {
766 0 : h->size = minsize;
767 : }
768 : }
769 17328 : close(fd);
770 : }
771 : }
772 :
773 18026 : TRC_DEBUG(HEAP, "%s%s%s,storage=%d,free=%zu,size=%zu\n",
774 : nme, ext ? "." : "", ext ? ext : "",
775 : (int) h->storage, h->free, h->size);
776 :
777 : /* On some OSs (WIN32,Solaris), it is prohibited to write to a
778 : * file that is open in MAP_PRIVATE (FILE_MAP_COPY) solution:
779 : * we write to a file named .ext.new. This file, if present,
780 : * takes precedence. */
781 18026 : dstpath = GDKfilepath(h->farmid, BATDIR, nme, ext);
782 18025 : if (dstpath == NULL)
783 : return GDK_FAIL;
784 18025 : minsize = strlen(dstpath) + strlen(suffix) + 1;
785 18025 : srcpath = GDKmalloc(minsize);
786 18025 : if (srcpath == NULL) {
787 0 : GDKfree(dstpath);
788 0 : return GDK_FAIL;
789 : }
790 18025 : strconcat_len(srcpath, minsize, dstpath, suffix, NULL);
791 :
792 18024 : t0 = GDKusec();
793 18025 : ret = MT_rename(srcpath, dstpath);
794 18025 : TRC_DEBUG(HEAP, "rename %s %s = %d %s ("LLFMT"usec)\n",
795 : srcpath, dstpath, ret, ret < 0 ? GDKstrerror(errno, (char[128]){0}, 128) : "",
796 : GDKusec() - t0);
797 18025 : GDKfree(srcpath);
798 18025 : GDKfree(dstpath);
799 :
800 : #ifdef SIZE_CHECK_IN_HEAPS_ONLY
801 18025 : if (GDKvm_cursize() + h->size >= GDK_vm_maxsize &&
802 0 : !MT_thread_override_limits()) {
803 0 : GDKerror("allocating too much memory (current: %zu, requested: %zu, limit: %zu)\n", GDKvm_cursize(), h->size, GDK_vm_maxsize);
804 0 : return GDK_FAIL;
805 : }
806 : #endif
807 :
808 18025 : size_t size = h->size;
809 18025 : QryCtx *qc = NULL;
810 18025 : if (h->storage != STORE_MEM)
811 1037 : size = (size + GDK_mmap_pagesize - 1) & ~(GDK_mmap_pagesize - 1);
812 18025 : if (h->farmid == 1 && (qc = MT_thread_get_qry_ctx()) != NULL) {
813 0 : ATOMIC_BASE_TYPE sz = 0;
814 0 : sz = ATOMIC_ADD(&qc->datasize, size);
815 0 : sz += h->size;
816 0 : if (qc->maxmem > 0 && sz > qc->maxmem) {
817 0 : ATOMIC_SUB(&qc->datasize, size);
818 0 : GDKerror("Query using too much memory.\n");
819 0 : return GDK_FAIL;
820 : }
821 : }
822 18025 : if (h->storage == STORE_MEM && h->free == 0) {
823 0 : h->base = GDKmalloc(h->size);
824 0 : h->wasempty = true;
825 : } else {
826 18025 : if (h->free == 0) {
827 0 : int fd = GDKfdlocate(h->farmid, nme, "wb", ext);
828 0 : if (fd >= 0)
829 0 : close(fd);
830 0 : h->wasempty = true;
831 : }
832 18025 : h->base = GDKload(h->farmid, nme, ext, h->free, &h->size, h->storage);
833 : }
834 18025 : if (h->base == NULL) {
835 0 : if (qc != NULL)
836 0 : ATOMIC_SUB(&qc->datasize, size);
837 0 : return GDK_FAIL; /* file could not be read satisfactorily */
838 : }
839 :
840 18025 : h->dirty = false; /* we just read it, so it's clean */
841 18025 : return GDK_SUCCEED;
842 : }
843 :
844 : /*
845 : * @- HEAPsave
846 : *
847 : * Saving STORE_MEM will do a write(fd, buf, size) in GDKsave
848 : * (explicit IO).
849 : *
850 : * Saving a STORE_PRIV heap X means that we must actually write to
851 : * X.new, thus we convert the mode passed to GDKsave to STORE_MEM.
852 : *
853 : * Saving STORE_MMAP will do a msync(buf, MSSYNC) in GDKsave (implicit
854 : * IO).
855 : *
856 : * After GDKsave returns successfully (>=0), we assume the heaps are
857 : * safe on stable storage.
858 : */
859 : gdk_return
860 364757 : HEAPsave(Heap *h, const char *nme, const char *ext, bool dosync, BUN free, MT_Lock *lock)
861 : {
862 364757 : storage_t store = h->newstorage;
863 364757 : long_str extension;
864 364757 : gdk_return rc;
865 364757 : const char suffix[] = ".new";
866 :
867 364757 : if (h->base == NULL) {
868 0 : GDKerror("no heap to save\n");
869 0 : return GDK_FAIL;
870 : }
871 364757 : if (free == 0) {
872 : /* nothing to see, please move on */
873 11399 : if (lock)
874 11399 : MT_lock_set(lock);
875 11399 : h->wasempty = true;
876 0 : if (lock)
877 11399 : MT_lock_unset(lock);
878 11399 : TRC_DEBUG(HEAP,
879 : "not saving: "
880 : "(%s.%s,storage=%d,free=%zu,size=%zu,dosync=%s)\n",
881 : nme?nme:"", ext, (int) h->newstorage, free, h->size,
882 : dosync?"true":"false");
883 11399 : return GDK_SUCCEED;
884 : }
885 353358 : if (h->storage != STORE_MEM && store == STORE_PRIV) {
886 : /* anonymous or private VM is saved as if it were malloced */
887 0 : store = STORE_MEM;
888 0 : assert(strlen(ext) + strlen(suffix) < sizeof(extension));
889 0 : strconcat_len(extension, sizeof(extension), ext, suffix, NULL);
890 0 : ext = extension;
891 353358 : } else if (store != STORE_MEM) {
892 1059 : store = h->storage;
893 : }
894 353358 : TRC_DEBUG(HEAP,
895 : "(%s.%s,storage=%d,free=%zu,size=%zu,dosync=%s)\n",
896 : nme?nme:"", ext, (int) h->newstorage, free, h->size,
897 : dosync?"true":"false");
898 353358 : rc = GDKsave(h->farmid, nme, ext, h->base, free, store, dosync);
899 353358 : if (lock)
900 326271 : MT_lock_set(lock);
901 353358 : if (rc == GDK_SUCCEED) {
902 353358 : h->hasfile = true;
903 353358 : h->dirty = free != h->free;
904 353358 : h->wasempty = false;
905 : } else {
906 0 : h->dirty = true;
907 0 : if (store != STORE_MMAP)
908 0 : h->hasfile = false;
909 : }
910 353358 : if (lock)
911 326271 : MT_lock_unset(lock);
912 : return rc;
913 : }
914 :
915 :
916 : /* Return the (virtual) size of the heap. */
917 : size_t
918 205331 : HEAPvmsize(Heap *h)
919 : {
920 205331 : if (h && h->base && h->free)
921 31263 : return h->size;
922 : return 0;
923 : }
924 :
925 : /* Return the allocated size of the heap, i.e. if the heap is memory
926 : * mapped and not copy-on-write (privately mapped), return 0. */
927 : size_t
928 205331 : HEAPmemsize(Heap *h)
929 : {
930 205331 : if (h && h->base && h->free && h->storage != STORE_MMAP)
931 31025 : return h->size;
932 : return 0;
933 : }
934 :
935 :
936 : /*
937 : * @+ Standard Heap Library
938 : * This library contains some routines which implement a @emph{
939 : * malloc} and @emph{ free} function on the Monet @emph{Heap}
940 : * structure. They are useful when implementing a new @emph{
941 : * variable-size} atomic data type, or for implementing new search
942 : * accelerators. All functions start with the prefix @emph{HEAP_}. T
943 : *
944 : * Due to non-careful design, the HEADER field was found to be
945 : * 32/64-bit dependent. As we do not (yet) want to change the BAT
946 : * image on disk, This is now fixed by switching on-the-fly between
947 : * two representations. We ensure that the 64-bit memory
948 : * representation is just as long as the 32-bits version (20 bytes) so
949 : * the rest of the heap never needs to shift. The function
950 : * HEAP_checkformat converts at load time dynamically between the
951 : * layout found on disk and the memory format. Recognition of the
952 : * header mode is done by looking at the first two ints: alignment
953 : * must be 4 or 8, and head can never be 4 or eight.
954 : *
955 : * TODO: user HEADER64 for both 32 and 64 bits (requires BAT format
956 : * change)
957 : */
958 :
959 : #define HEAPVERSION 20030408
960 :
961 : typedef struct heapheader {
962 : size_t head; /* index to first free block */
963 : int alignment; /* alignment of objects on heap */
964 : size_t firstblock; /* first block in heap */
965 : int version;
966 : int (*sizefcn)(const void *); /* ADT function to ask length */
967 : } HEADER32;
968 :
969 : typedef struct {
970 : int version;
971 : int alignment;
972 : size_t head;
973 : size_t firstblock;
974 : int (*sizefcn)(const void *);
975 : } HEADER64;
976 :
977 : #if SIZEOF_SIZE_T==8
978 : typedef HEADER64 HEADER;
979 : typedef HEADER32 HEADER_OTHER;
980 : #else
981 : typedef HEADER32 HEADER;
982 : typedef HEADER64 HEADER_OTHER;
983 : #endif
984 : typedef struct hfblock {
985 : size_t size; /* Size of this block in freelist */
986 : size_t next; /* index of next block */
987 : } CHUNK;
988 :
989 : #define roundup_8(x) (((x)+7)&~7)
990 : #define roundup_4(x) (((x)+3)&~3)
991 : #define blocksize(h,p) ((p)->size)
992 :
993 : static inline size_t
994 2113 : roundup_num(size_t number, int alignment)
995 : {
996 2113 : size_t rval;
997 :
998 2113 : rval = number + (size_t) alignment - 1;
999 2113 : rval -= (rval % (size_t) alignment);
1000 2113 : return rval;
1001 : }
1002 :
1003 : #define HEAP_index(HEAP,INDEX,TYPE) ((TYPE *)((char *) (HEAP)->base + (INDEX)))
1004 :
1005 :
1006 : static void
1007 2113 : HEAP_empty(Heap *heap, size_t nprivate, int alignment)
1008 : {
1009 : /* Find position of header block. */
1010 2113 : HEADER *hheader = HEAP_index(heap, 0, HEADER);
1011 :
1012 : /* Calculate position of first and only free block. */
1013 2113 : size_t head = roundup_num((size_t) (roundup_8(sizeof(HEADER)) + roundup_8(nprivate)), alignment);
1014 2113 : CHUNK *headp = HEAP_index(heap, head, CHUNK);
1015 :
1016 2113 : assert(roundup_8(sizeof(HEADER)) + roundup_8(nprivate) <= VAR_MAX);
1017 :
1018 : /* Fill header block. */
1019 2113 : hheader->head = head;
1020 2113 : hheader->sizefcn = NULL;
1021 2113 : hheader->alignment = alignment;
1022 2113 : hheader->firstblock = head;
1023 2113 : hheader->version = HEAPVERSION;
1024 :
1025 : /* Fill first free block. */
1026 2113 : assert(heap->size - head <= VAR_MAX);
1027 2113 : headp->size = (size_t) (heap->size - head);
1028 2113 : headp->next = 0;
1029 :
1030 2113 : heap->dirty = true;
1031 2113 : }
1032 :
1033 : gdk_return
1034 2113 : HEAP_initialize(Heap *heap, size_t nbytes, size_t nprivate, int alignment)
1035 : {
1036 : /* For now we know about two alignments. */
1037 2113 : if (alignment != 8) {
1038 : alignment = 4;
1039 : }
1040 2113 : if ((size_t) alignment < sizeof(size_t))
1041 : alignment = (int) sizeof(size_t);
1042 :
1043 : /* Calculate number of bytes needed for heap + structures. */
1044 : {
1045 2113 : size_t total = 100 + nbytes + nprivate + sizeof(HEADER) + sizeof(CHUNK);
1046 :
1047 2113 : total = roundup_8(total);
1048 2113 : if (HEAPalloc(heap, total, 1) != GDK_SUCCEED)
1049 : return GDK_FAIL;
1050 2113 : heap->free = heap->size;
1051 : }
1052 :
1053 : /* initialize heap as empty */
1054 2113 : HEAP_empty(heap, nprivate, alignment);
1055 2113 : return GDK_SUCCEED;
1056 : }
1057 :
1058 :
1059 : var_t
1060 7402120 : HEAP_malloc(BAT *b, size_t nbytes)
1061 : {
1062 7402120 : Heap *heap = b->tvheap;
1063 7402120 : size_t block, trail, ttrail;
1064 7402120 : CHUNK *blockp;
1065 7402120 : CHUNK *trailp;
1066 7402120 : HEADER *hheader = HEAP_index(heap, 0, HEADER);
1067 :
1068 : /* add space for size field */
1069 7402120 : nbytes += hheader->alignment;
1070 7402120 : nbytes = roundup_8(nbytes);
1071 7402120 : if (nbytes < sizeof(CHUNK))
1072 : nbytes = (size_t) sizeof(CHUNK);
1073 :
1074 : /* block -- points to block with acceptable size (if available).
1075 : * trail -- points to predecessor of block.
1076 : * ttrail -- points to predecessor of trail.
1077 : */
1078 7402120 : ttrail = 0;
1079 7402120 : trail = 0;
1080 7402256 : for (block = hheader->head; block != 0; block = blockp->next) {
1081 7402086 : blockp = HEAP_index(heap, block, CHUNK);
1082 :
1083 7402086 : assert(trail == 0 || block > trail);
1084 7402086 : if (trail != 0 && block <= trail) {
1085 0 : GDKerror("Free list is not orderered\n");
1086 0 : return (var_t) -1;
1087 : }
1088 :
1089 7402086 : if (blockp->size >= nbytes)
1090 : break;
1091 136 : ttrail = trail;
1092 136 : trail = block;
1093 : }
1094 :
1095 : /* If no block of acceptable size is found we try to enlarge
1096 : * the heap. */
1097 7402120 : if (block == 0) {
1098 171 : size_t newsize;
1099 :
1100 171 : assert(heap->free + MAX(heap->free, nbytes) <= VAR_MAX);
1101 : #if SIZEOF_SIZE_T == 4
1102 : newsize = MIN(heap->free, (size_t) 1 << 20);
1103 : #else
1104 171 : newsize = MIN(heap->free, (size_t) 1 << 30);
1105 : #endif
1106 171 : newsize = (size_t) roundup_8(heap->free + MAX(newsize, nbytes));
1107 171 : assert(heap->free <= VAR_MAX);
1108 171 : block = (size_t) heap->free; /* current end-of-heap */
1109 :
1110 : /* Increase the size of the heap. */
1111 171 : TRC_DEBUG(HEAP, "HEAPextend in HEAP_malloc %s %zu %zu\n", heap->filename, heap->size, newsize);
1112 171 : if (HEAPgrow(&b->tvheap, newsize, false) != GDK_SUCCEED) {
1113 : return (var_t) -1;
1114 : }
1115 172 : heap = b->tvheap;
1116 172 : heap->free = newsize;
1117 172 : heap->dirty = true;
1118 172 : hheader = HEAP_index(heap, 0, HEADER);
1119 :
1120 172 : blockp = HEAP_index(heap, block, CHUNK);
1121 172 : trailp = HEAP_index(heap, trail, CHUNK);
1122 :
1123 172 : blockp->next = 0;
1124 172 : assert(heap->free - block <= VAR_MAX);
1125 172 : blockp->size = (size_t) (heap->free - block); /* determine size of allocated block */
1126 :
1127 : /* Try to join the last block in the freelist and the
1128 : * newly allocated memory */
1129 172 : if ((trail != 0) && (trail + trailp->size == block)) {
1130 137 : trailp->size += blockp->size;
1131 137 : trailp->next = blockp->next;
1132 :
1133 137 : block = trail;
1134 137 : trail = ttrail;
1135 : }
1136 : }
1137 :
1138 : /* Now we have found a block which is big enough in block.
1139 : * The predecessor of this block is in trail. */
1140 7402121 : blockp = HEAP_index(heap, block, CHUNK);
1141 :
1142 : /* If selected block is bigger than block needed split block
1143 : * in two.
1144 : * TUNE: use different amount than 2*sizeof(CHUNK) */
1145 7402121 : if (blockp->size >= nbytes + 2 * sizeof(CHUNK)) {
1146 7402085 : size_t newblock = block + nbytes;
1147 7402085 : CHUNK *newblockp = HEAP_index(heap, newblock, CHUNK);
1148 :
1149 7402085 : newblockp->size = blockp->size - nbytes;
1150 7402085 : newblockp->next = blockp->next;
1151 :
1152 7402085 : blockp->next = newblock;
1153 7402085 : blockp->size = nbytes;
1154 : }
1155 :
1156 : /* Delete block from freelist */
1157 7402121 : if (trail == 0) {
1158 7402121 : hheader->head = blockp->next;
1159 : } else {
1160 0 : trailp = HEAP_index(heap, trail, CHUNK);
1161 :
1162 0 : trailp->next = blockp->next;
1163 : }
1164 :
1165 7402121 : block += hheader->alignment;
1166 7402121 : return (var_t) block;
1167 : }
1168 :
1169 : void
1170 35 : HEAP_free(Heap *heap, var_t mem)
1171 : {
1172 : /* we cannot free pieces of the heap because we may have used
1173 : * append_varsized_bat to create the heap; if we did, there may be
1174 : * multiple locations in the offset heap that refer to the same entry in
1175 : * the vheap, so we cannot free any until we free all */
1176 35 : (void) heap;
1177 35 : (void) mem;
1178 : #if 0
1179 : HEADER *hheader = HEAP_index(heap, 0, HEADER);
1180 : CHUNK *beforep;
1181 : CHUNK *blockp;
1182 : CHUNK *afterp;
1183 : size_t after, before, block = mem;
1184 :
1185 : assert(hheader->alignment == 8 || hheader->alignment == 4);
1186 : if (hheader->alignment != 8 && hheader->alignment != 4) {
1187 : GDKerror("Heap structure corrupt\n");
1188 : return;
1189 : }
1190 :
1191 : block -= hheader->alignment;
1192 : blockp = HEAP_index(heap, block, CHUNK);
1193 :
1194 : /* block -- block which we want to free
1195 : * before -- first free block before block
1196 : * after -- first free block after block
1197 : */
1198 :
1199 : before = 0;
1200 : for (after = hheader->head; after != 0; after = HEAP_index(heap, after, CHUNK)->next) {
1201 : if (after > block)
1202 : break;
1203 : before = after;
1204 : }
1205 :
1206 : beforep = HEAP_index(heap, before, CHUNK);
1207 : afterp = HEAP_index(heap, after, CHUNK);
1208 :
1209 : /* If it is not the last free block. */
1210 : if (after != 0) {
1211 : /*
1212 : * If this block and the block after are consecutive.
1213 : */
1214 : if (block + blockp->size == after) {
1215 : /*
1216 : * We unite them.
1217 : */
1218 : blockp->size += afterp->size;
1219 : blockp->next = afterp->next;
1220 : } else
1221 : blockp->next = after;
1222 : } else {
1223 : /*
1224 : * It is the last block in the freelist.
1225 : */
1226 : blockp->next = 0;
1227 : }
1228 :
1229 : /*
1230 : * If it is not the first block in the list.
1231 : */
1232 : if (before != 0) {
1233 : /*
1234 : * If the before block and this block are consecutive.
1235 : */
1236 : if (before + beforep->size == block) {
1237 : /*
1238 : * We unite them.
1239 : */
1240 : beforep->size += blockp->size;
1241 : beforep->next = blockp->next;
1242 : } else
1243 : beforep->next = block;
1244 : } else {
1245 : /*
1246 : * Add block at head of free list.
1247 : */
1248 : hheader->head = block;
1249 : }
1250 : #endif
1251 35 : }
1252 :
1253 : void
1254 15 : HEAP_recover(Heap *h, const var_t *offsets, BUN noffsets)
1255 : {
1256 15 : HEADER *hheader;
1257 15 : CHUNK *blockp;
1258 15 : size_t dirty = 0;
1259 15 : var_t maxoff = 0;
1260 15 : BUN i;
1261 :
1262 15 : if (!h->cleanhash)
1263 : return;
1264 15 : hheader = HEAP_index(h, 0, HEADER);
1265 15 : assert(h->free >= sizeof(HEADER));
1266 15 : assert(hheader->version == HEAPVERSION);
1267 15 : assert(h->size >= hheader->firstblock);
1268 46 : for (i = 0; i < noffsets; i++)
1269 31 : if (offsets[i] > maxoff)
1270 : maxoff = offsets[i];
1271 15 : assert(maxoff < h->free);
1272 15 : if (maxoff == 0) {
1273 0 : if (hheader->head != hheader->firstblock) {
1274 0 : hheader->head = hheader->firstblock;
1275 0 : dirty = sizeof(HEADER);
1276 : }
1277 0 : blockp = HEAP_index(h, hheader->firstblock, CHUNK);
1278 0 : if (blockp->next != 0 ||
1279 0 : blockp->size != h->size - hheader->head) {
1280 0 : blockp->size = (size_t) (h->size - hheader->head);
1281 0 : blockp->next = 0;
1282 0 : dirty = hheader->firstblock + sizeof(CHUNK);
1283 : }
1284 : } else {
1285 15 : size_t block = maxoff - hheader->alignment;
1286 15 : size_t end = block + *HEAP_index(h, block, size_t);
1287 15 : size_t trail;
1288 :
1289 15 : assert(end <= h->free);
1290 15 : if (end + sizeof(CHUNK) <= h->free) {
1291 15 : blockp = HEAP_index(h, end, CHUNK);
1292 15 : if (hheader->head <= end &&
1293 15 : blockp->next == 0 &&
1294 15 : blockp->size == h->free - end)
1295 : return;
1296 0 : } else if (hheader->head == 0) {
1297 : /* no free space after last allocated block
1298 : * and no free list */
1299 : return;
1300 : }
1301 0 : block = hheader->head;
1302 0 : trail = 0;
1303 0 : while (block < maxoff && block != 0) {
1304 0 : blockp = HEAP_index(h, block, CHUNK);
1305 0 : trail = block;
1306 0 : block = blockp->next;
1307 : }
1308 0 : if (trail == 0) {
1309 : /* no free list */
1310 0 : if (end + sizeof(CHUNK) > h->free) {
1311 : /* no free space after last allocated
1312 : * block */
1313 0 : if (hheader->head != 0) {
1314 0 : hheader->head = 0;
1315 0 : dirty = sizeof(HEADER);
1316 : }
1317 : } else {
1318 : /* there is free space after last
1319 : * allocated block */
1320 0 : if (hheader->head != end) {
1321 0 : hheader->head = end;
1322 0 : dirty = sizeof(HEADER);
1323 : }
1324 0 : blockp = HEAP_index(h, end, CHUNK);
1325 0 : if (blockp->next != 0 ||
1326 0 : blockp->size != h->free - end) {
1327 0 : blockp->next = 0;
1328 0 : blockp->size = h->free - end;
1329 0 : dirty = end + sizeof(CHUNK);
1330 : }
1331 : }
1332 : } else {
1333 : /* there is a free list */
1334 0 : blockp = HEAP_index(h, trail, CHUNK);
1335 0 : if (end + sizeof(CHUNK) > h->free) {
1336 : /* no free space after last allocated
1337 : * block */
1338 0 : if (blockp->next != 0) {
1339 0 : blockp->next = 0;
1340 0 : dirty = trail + sizeof(CHUNK);
1341 : }
1342 : } else {
1343 : /* there is free space after last
1344 : * allocated block */
1345 0 : if (blockp->next != end) {
1346 0 : blockp->next = end;
1347 0 : dirty = trail + sizeof(CHUNK);
1348 : }
1349 0 : blockp = HEAP_index(h, end, CHUNK);
1350 0 : if (blockp->next != 0 ||
1351 0 : blockp->size != h->free - end) {
1352 0 : blockp->next = 0;
1353 0 : blockp->size = h->free - end;
1354 0 : dirty = end + sizeof(CHUNK);
1355 : }
1356 : }
1357 : }
1358 : }
1359 0 : h->cleanhash = false;
1360 0 : if (dirty) {
1361 0 : if (h->storage == STORE_MMAP) {
1362 0 : if (!(ATOMIC_GET(&GDKdebug) & NOSYNCMASK))
1363 0 : (void) MT_msync(h->base, dirty);
1364 : else
1365 0 : h->dirty = true;
1366 : } else
1367 0 : h->dirty = true;
1368 : }
1369 : }
|