1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
|
/*-
* Copyright (c) 2008-2013 WiredTiger, Inc.
* All rights reserved.
*
* See the file LICENSE for redistribution information.
*/
#include "wt_internal.h"
static int __block_ext_overlap(WT_SESSION_IMPL *,
WT_BLOCK *, WT_EXTLIST *, WT_EXT **, WT_EXTLIST *, WT_EXT **);
static int __block_extlist_dump(
WT_SESSION_IMPL *, const char *, WT_EXTLIST *, int);
static int __block_merge(WT_SESSION_IMPL *, WT_EXTLIST *, off_t, off_t);
/*
* __block_off_srch --
* Search a by-offset skiplist (either the primary by-offset list, or the
* by-offset list referenced by a size entry), for the specified offset.
*/
static void
__block_off_srch(WT_EXT **head, off_t off, WT_EXT ***stack, int skip_off)
{
WT_EXT **extp;
int i;
/*
* Start at the highest skip level, then go as far as possible at each
* level before stepping down to the next.
*
* Return a stack for an exact match or the next-largest item.
*
* The WT_EXT structure contains two skiplists, the primary one and the
* per-size bucket one: if the skip_off flag is set, offset the skiplist
* array by the depth specified in this particular structure.
*/
for (i = WT_SKIP_MAXDEPTH - 1, extp = &head[i]; i >= 0;)
if (*extp != NULL && (*extp)->off < off)
extp =
&(*extp)->next[i + (skip_off ? (*extp)->depth : 0)];
else
stack[i--] = extp--;
}
/*
* __block_size_srch --
* Search the by-size skiplist for the specified size.
*/
static void
__block_size_srch(WT_SIZE **head, off_t size, WT_SIZE ***stack)
{
WT_SIZE **szp;
int i;
/*
* Start at the highest skip level, then go as far as possible at each
* level before stepping down to the next.
*
* Return a stack for an exact match or the next-largest item.
*/
for (i = WT_SKIP_MAXDEPTH - 1, szp = &head[i]; i >= 0;)
if (*szp != NULL && (*szp)->size < size)
szp = &(*szp)->next[i];
else
stack[i--] = szp--;
}
/*
* __block_off_srch_pair --
* Search a by-offset skiplist for before/after records of the specified
* offset.
*/
static void
__block_off_srch_pair(
WT_EXTLIST *el, off_t off, WT_EXT **beforep, WT_EXT **afterp)
{
WT_EXT **head, **extp;
int i;
*beforep = *afterp = NULL;
head = el->off;
/*
* Start at the highest skip level, then go as far as possible at each
* level before stepping down to the next.
*/
for (i = WT_SKIP_MAXDEPTH - 1, extp = &head[i]; i >= 0;) {
if (*extp == NULL) {
--i;
--extp;
continue;
}
if ((*extp)->off < off) { /* Keep going at this level */
*beforep = *extp;
extp = &(*extp)->next[i];
} else { /* Drop down a level */
*afterp = *extp;
--i;
--extp;
}
}
}
/*
* __block_extlist_last --
* Return the last extent in the skiplist.
*/
static WT_EXT *
__block_extlist_last(WT_EXT **head)
{
WT_EXT *ext, **extp;
int i;
ext = NULL;
for (i = WT_SKIP_MAXDEPTH - 1, extp = &head[i]; i >= 0;) {
if (*extp == NULL) {
--i;
--extp;
continue;
}
ext = *extp;
extp = &(*extp)->next[i];
}
return (ext);
}
/*
* __block_ext_insert --
* Insert an extent into an extent list.
*/
static int
__block_ext_insert(WT_SESSION_IMPL *session, WT_EXTLIST *el, WT_EXT *ext)
{
WT_EXT **astack[WT_SKIP_MAXDEPTH];
WT_SIZE *szp, **sstack[WT_SKIP_MAXDEPTH];
u_int i;
/*
* If we are inserting a new size onto the size skiplist, we'll need
* a new WT_EXT structure for that skiplist.
*/
__block_size_srch(el->sz, ext->size, sstack);
szp = *sstack[0];
if (szp == NULL || szp->size != ext->size) {
WT_RET(__wt_calloc(session, 1,
sizeof(WT_SIZE) + ext->depth * sizeof(WT_SIZE *), &szp));
szp->size = ext->size;
szp->depth = ext->depth;
for (i = 0; i < ext->depth; ++i) {
szp->next[i] = *sstack[i];
*sstack[i] = szp;
}
}
/* Insert the new WT_EXT structure into the offset skiplist. */
__block_off_srch(el->off, ext->off, astack, 0);
for (i = 0; i < ext->depth; ++i) {
ext->next[i] = *astack[i];
*astack[i] = ext;
}
/*
* Insert the new WT_EXT structure into the size element's offset
* skiplist.
*/
__block_off_srch(szp->off, ext->off, astack, 1);
for (i = 0; i < ext->depth; ++i) {
ext->next[i + ext->depth] = *astack[i];
*astack[i] = ext;
}
++el->entries;
el->bytes += (uint64_t)ext->size;
return (0);
}
/*
* __block_off_insert --
* Insert a file range into an extent list.
*/
static int
__block_off_insert(
WT_SESSION_IMPL *session, WT_EXTLIST *el, off_t off, off_t size)
{
WT_EXT *ext;
u_int skipdepth;
/* Allocate a new WT_EXT structure. */
skipdepth = __wt_skip_choose_depth();
WT_RET(__wt_calloc(session, 1,
sizeof(WT_EXT) + skipdepth * 2 * sizeof(WT_EXT *), &ext));
ext->off = off;
ext->size = size;
ext->depth = (uint8_t)skipdepth;
return (__block_ext_insert(session, el, ext));
}
#ifdef HAVE_DIAGNOSTIC
/*
* __block_off_match --
* Return if any part of a specified range appears on a specified extent
* list.
*/
static int
__block_off_match(WT_EXTLIST *el, off_t off, off_t size)
{
WT_EXT *before, *after;
/* Search for before and after entries for the offset. */
__block_off_srch_pair(el, off, &before, &after);
/* If "before" or "after" overlaps, we have a winner. */
if (before != NULL && before->off + before->size > off)
return (1);
if (after != NULL && off + size > after->off)
return (1);
return (0);
}
/*
* __wt_block_misplaced --
* Complain if a block appears on the available or discard lists.
*/
int
__wt_block_misplaced(WT_SESSION_IMPL *session,
WT_BLOCK *block, const char *tag, off_t offset, uint32_t size)
{
const char *name;
name = NULL;
/*
* Verify a block the btree engine thinks it "owns" doesn't appear on
* the available or discard lists (it might reasonably be on the alloc
* list, if it was allocated since the last checkpoint). The engine
* "owns" a block if it's trying to read or free the block, and those
* functions make this check.
*/
__wt_spin_lock(session, &block->live_lock);
if (__block_off_match(&block->live.avail, offset, size))
name = "available";
else if (__block_off_match(&block->live.discard, offset, size))
name = "discard";
__wt_spin_unlock(session, &block->live_lock);
if (name != NULL)
WT_RET_MSG(session, WT_ERROR,
"%s failed: %" PRIuMAX "/%" PRIu32 " is on the %s list",
tag, (uintmax_t)offset, size, name);
return (0);
}
#endif
/*
* __block_off_remove --
* Remove a record from an extent list.
*/
static int
__block_off_remove(
WT_SESSION_IMPL *session, WT_EXTLIST *el, off_t off, WT_EXT **extp)
{
WT_EXT *ext, **astack[WT_SKIP_MAXDEPTH];
WT_SIZE *szp, **sstack[WT_SKIP_MAXDEPTH];
u_int i;
/* Find and remove the record from the by-offset skiplist. */
__block_off_srch(el->off, off, astack, 0);
ext = *astack[0];
if (ext == NULL || ext->off != off)
goto corrupt;
for (i = 0; i < ext->depth; ++i)
*astack[i] = ext->next[i];
/*
* Find and remove the record from the size's offset skiplist; if that
* empties the by-size skiplist entry, remove it as well.
*/
__block_size_srch(el->sz, ext->size, sstack);
szp = *sstack[0];
if (szp == NULL || szp->size != ext->size)
return (EINVAL);
__block_off_srch(szp->off, off, astack, 1);
ext = *astack[0];
if (ext == NULL || ext->off != off)
goto corrupt;
for (i = 0; i < ext->depth; ++i)
*astack[i] = ext->next[i + ext->depth];
if (szp->off[0] == NULL) {
for (i = 0; i < szp->depth; ++i)
*sstack[i] = szp->next[i];
__wt_free(session, szp);
}
--el->entries;
el->bytes -= (uint64_t)ext->size;
/* Return the record if our caller wants it, otherwise free it. */
if (extp == NULL)
__wt_free(session, ext);
else
*extp = ext;
return (0);
corrupt:
WT_RET_MSG(session, EINVAL,
"attempt to remove non-existent offset from an extent list");
}
/*
* __wt_block_off_remove_overlap --
* Remove a range from an extent list, where the range may be part of a
* overlapping entry.
*/
int
__wt_block_off_remove_overlap(
WT_SESSION_IMPL *session, WT_EXTLIST *el, off_t off, off_t size)
{
WT_EXT *before, *after, *ext;
off_t a_off, a_size, b_off, b_size;
WT_ASSERT(session, off != WT_BLOCK_INVALID_OFFSET);
/* Search for before and after entries for the offset. */
__block_off_srch_pair(el, off, &before, &after);
/* If "before" or "after" overlaps, retrieve the overlapping entry. */
if (before != NULL && before->off + before->size > off) {
WT_RET(__block_off_remove(session, el, before->off, &ext));
/* Calculate overlapping extents. */
a_off = ext->off;
a_size = off - ext->off;
b_off = off + size;
b_size = ext->size - (a_size + size);
} else if (after != NULL && off + size > after->off) {
WT_RET(__block_off_remove(session, el, after->off, &ext));
/*
* Calculate overlapping extents. There's no initial overlap
* since the after extent presumably cannot begin before "off".
*/
a_off = WT_BLOCK_INVALID_OFFSET;
a_size = 0;
b_off = off + size;
b_size = ext->size - (b_off - ext->off);
} else
return (WT_NOTFOUND);
/*
* If there are overlaps, insert the item; re-use the extent structure
* and save the allocation (we know there's no need to merge).
*/
if (a_size != 0) {
ext->off = a_off;
ext->size = a_size;
WT_RET(__block_ext_insert(session, el, ext));
ext = NULL;
}
if (b_size != 0) {
if (ext == NULL)
WT_RET(__block_off_insert(session, el, b_off, b_size));
else {
ext->off = b_off;
ext->size = b_size;
WT_RET(__block_ext_insert(session, el, ext));
ext = NULL;
}
}
if (ext != NULL)
__wt_free(session, ext);
return (0);
}
/*
* __block_extend --
* Extend the file to allocate space.
*/
static int
__block_extend(
WT_SESSION_IMPL *session, WT_BLOCK *block, off_t *offp, off_t size)
{
WT_FH *fh;
fh = block->fh;
/*
* Callers of this function are expected to have already acquired any
* locks required to extend the file.
*
* We should never be allocating from an empty file.
*/
if (fh->file_size < WT_BLOCK_DESC_SECTOR)
WT_RET_MSG(session, EINVAL,
"cannot allocate from a file with no description "
"information");
/*
* Make sure we don't allocate past the maximum file size. There's no
* easy way to know the maximum off_t on a system, limit growth to 8B
* bits (we currently check an off_t is 8B in verify_build.h). I don't
* think we're likely to see anything bigger for awhile.
*/
if (fh->file_size > (off_t)INT64_MAX - size)
WT_RET_MSG(session, WT_ERROR,
"block allocation failed, file cannot grow further");
*offp = fh->file_size;
fh->file_size += size;
WT_DSTAT_INCR(session, block_extension);
WT_VERBOSE_RET(session, block,
"file extend %" PRIdMAX "B @ %" PRIdMAX,
(intmax_t)size, (intmax_t)*offp);
return (0);
}
/*
* __wt_block_alloc --
* Alloc a chunk of space from the underlying file.
*/
int
__wt_block_alloc(
WT_SESSION_IMPL *session, WT_BLOCK *block, off_t *offp, off_t size)
{
WT_EXT *ext;
WT_SIZE *szp, **sstack[WT_SKIP_MAXDEPTH];
WT_DSTAT_INCR(session, block_alloc);
if (size % block->allocsize != 0)
WT_RET_MSG(session, EINVAL,
"cannot allocate a block size %" PRIdMAX " that is not "
"a multiple of the allocation size %" PRIu32,
(intmax_t)size, block->allocsize);
/*
* Allocation is first-fit by size, then by lowest offset: search the
* by-size skiplist for the requested size and take the first entry on
* the by-size offset list. This means we prefer best-fit over lower
* offset, but within a size we'll prefer an offset appearing earlier
* in the file. If we don't have anything big enough, extend the file.
*/
__block_size_srch(block->live.avail.sz, size, sstack);
szp = *sstack[0];
if (szp == NULL) {
WT_RET(__block_extend(session, block, offp, size));
goto done;
}
/* Remove the first record, and set the returned offset. */
ext = szp->off[0];
WT_RET(__block_off_remove(session, &block->live.avail, ext->off, &ext));
*offp = ext->off;
/* If doing a partial allocation, adjust the record and put it back. */
if (ext->size > size) {
WT_VERBOSE_RET(session, block,
"allocate %" PRIdMAX " from range %" PRIdMAX "-%"
PRIdMAX ", range shrinks to %" PRIdMAX "-%" PRIdMAX,
(intmax_t)size,
(intmax_t)ext->off, (intmax_t)(ext->off + ext->size),
(intmax_t)(ext->off + size),
(intmax_t)(ext->off + size + ext->size - size));
ext->off += size;
ext->size -= size;
WT_RET(__block_ext_insert(session, &block->live.avail, ext));
} else {
WT_VERBOSE_RET(session, block,
"allocate range %" PRIdMAX "-%" PRIdMAX,
(intmax_t)ext->off, (intmax_t)(ext->off + ext->size));
__wt_free(session, ext);
}
done: /* Add the newly allocated extent to the list of allocations. */
WT_RET(__block_merge(session, &block->live.alloc, *offp, (off_t)size));
return (0);
}
/*
* __wt_block_free --
* Free a cookie-referenced chunk of space to the underlying file.
*/
int
__wt_block_free(WT_SESSION_IMPL *session,
WT_BLOCK *block, const uint8_t *addr, uint32_t addr_size)
{
WT_DECL_RET;
off_t offset;
uint32_t cksum, size;
WT_UNUSED(addr_size);
WT_DSTAT_INCR(session, block_free);
/* Crack the cookie. */
WT_RET(__wt_block_buffer_to_addr(block, addr, &offset, &size, &cksum));
WT_VERBOSE_RET(session, block,
"free %" PRIdMAX "/%" PRIdMAX, (intmax_t)offset, (intmax_t)size);
#ifdef HAVE_DIAGNOSTIC
WT_RET(__wt_block_misplaced(session, block, "free", offset, size));
#endif
__wt_spin_lock(session, &block->live_lock);
ret = __wt_block_off_free(session, block, offset, (off_t)size);
__wt_spin_unlock(session, &block->live_lock);
return (ret);
}
/*
* __wt_block_off_free --
* Free a file range to the underlying file.
*/
int
__wt_block_off_free(
WT_SESSION_IMPL *session, WT_BLOCK *block, off_t offset, off_t size)
{
WT_DECL_RET;
/*
* Callers of this function are expected to have already acquired any
* locks required to manipulate the extent lists.
*
* We can reuse this extent immediately if it was allocated during this
* checkpoint, merge it into the avail list (which slows file growth in
* workloads including repeated overflow record modification). If this
* extent is referenced in a previous checkpoint, merge into the discard
* list.
*/
if ((ret = __wt_block_off_remove_overlap(
session, &block->live.alloc, offset, size)) == 0)
ret = __block_merge(
session, &block->live.avail, offset, (off_t)size);
else if (ret == WT_NOTFOUND)
ret = __block_merge(
session, &block->live.discard, offset, (off_t)size);
return (ret);
}
#ifdef HAVE_DIAGNOSTIC
/*
* __wt_block_extlist_check --
* Return if the extent lists overlap.
*/
int
__wt_block_extlist_check(
WT_SESSION_IMPL *session, WT_EXTLIST *al, WT_EXTLIST *bl)
{
WT_EXT *a, *b;
a = al->off[0];
b = bl->off[0];
/* Walk the lists in parallel, looking for overlaps. */
while (a != NULL && b != NULL) {
/*
* If there's no overlap, move the lower-offset entry to the
* next entry in its list.
*/
if (a->off + a->size <= b->off) {
a = a->next[0];
continue;
}
if (b->off + b->size <= a->off) {
b = b->next[0];
continue;
}
WT_RET_MSG(session, EINVAL,
"checkpoint merge check: %s list overlaps the %s list",
al->name, bl->name);
}
return (0);
}
#endif
/*
* __wt_block_extlist_overlap --
* Review a checkpoint's alloc/discard extent lists, move overlaps into the
* live system's checkpoint-avail list.
*/
int
__wt_block_extlist_overlap(
WT_SESSION_IMPL *session, WT_BLOCK *block, WT_BLOCK_CKPT *ci)
{
WT_EXT *alloc, *discard;
alloc = ci->alloc.off[0];
discard = ci->discard.off[0];
/* Walk the lists in parallel, looking for overlaps. */
while (alloc != NULL && discard != NULL) {
/*
* If there's no overlap, move the lower-offset entry to the
* next entry in its list.
*/
if (alloc->off + alloc->size <= discard->off) {
alloc = alloc->next[0];
continue;
}
if (discard->off + discard->size <= alloc->off) {
discard = discard->next[0];
continue;
}
/* Reconcile the overlap. */
WT_RET(__block_ext_overlap(session, block,
&ci->alloc, &alloc, &ci->discard, &discard));
}
return (0);
}
/*
* __block_ext_overlap --
* Reconcile two overlapping ranges.
*/
static int
__block_ext_overlap(WT_SESSION_IMPL *session,
WT_BLOCK *block, WT_EXTLIST *ael, WT_EXT **ap, WT_EXTLIST *bel, WT_EXT **bp)
{
WT_EXT *a, *b, **ext;
WT_EXTLIST *avail, *el;
off_t off, size;
avail = &block->live.ckpt_avail;
/*
* The ranges overlap, choose the range we're going to take from each.
*
* We can think of the overlap possibilities as 11 different cases:
*
* AAAAAAAAAAAAAAAAAA
* #1 BBBBBBBBBBBBBBBBBB ranges are are the same
* #2 BBBBBBBBBBBBB overlaps the beginning
* #3 BBBBBBBBBBBBBBBB overlaps the end
* #4 BBBBB B is a prefix of A
* #5 BBBBBB B is middle of A
* #6 BBBBBBBBBB B is a suffix of A
*
* and:
*
* BBBBBBBBBBBBBBBBBB
* #7 AAAAAAAAAAAAA same as #3
* #8 AAAAAAAAAAAAAAAA same as #2
* #9 AAAAA A is a prefix of B
* #10 AAAAAA A is middle of B
* #11 AAAAAAAAAA A is a suffix of B
*
*
* By swapping the arguments so "A" is always the lower range, we can
* eliminate cases #2, #8, #10 and #11, and only handle 7 cases:
*
* AAAAAAAAAAAAAAAAAA
* #1 BBBBBBBBBBBBBBBBBB ranges are are the same
* #3 BBBBBBBBBBBBBBBB overlaps the end
* #4 BBBBB B is a prefix of A
* #5 BBBBBB B is middle of A
* #6 BBBBBBBBBB B is a suffix of A
*
* and:
*
* BBBBBBBBBBBBBBBBBB
* #7 AAAAAAAAAAAAA same as #3
* #9 AAAAA A is a prefix of B
*/
a = *ap;
b = *bp;
if (a->off > b->off) { /* Swap */
b = *ap;
a = *bp;
ext = ap; ap = bp; bp = ext;
el = ael; ael = bel; bel = el;
}
if (a->off == b->off) { /* Case #1, #4, #9 */
if (a->size == b->size) { /* Case #1 */
/*
* Move caller's A and B to the next element
* Add that A and B range to the avail list
* Delete A and B
*/
*ap = (*ap)->next[0];
*bp = (*bp)->next[0];
WT_RET(__block_merge(session, avail, b->off, b->size));
WT_RET(__block_off_remove(session, ael, a->off, NULL));
WT_RET(__block_off_remove(session, bel, b->off, NULL));
}
else if (a->size > b->size) { /* Case #4 */
/*
* Remove A from its list
* Increment/Decrement A's offset/size by the size of B
* Insert A on its list
*/
WT_RET(__block_off_remove(session, ael, a->off, &a));
a->off += b->size;
a->size -= b->size;
WT_RET(__block_ext_insert(session, ael, a));
/*
* Move caller's B to the next element
* Add B's range to the avail list
* Delete B
*/
*bp = (*bp)->next[0];
WT_RET(__block_merge(session, avail, b->off, b->size));
WT_RET(__block_off_remove(session, bel, b->off, NULL));
} else { /* Case #9 */
/*
* Remove B from its list
* Increment/Decrement B's offset/size by the size of A
* Insert B on its list
*/
WT_RET(__block_off_remove(session, bel, b->off, &b));
b->off += a->size;
b->size -= a->size;
WT_RET(__block_ext_insert(session, bel, b));
/*
* Move caller's A to the next element
* Add A's range to the avail list
* Delete A
*/
*ap = (*ap)->next[0];
WT_RET(__block_merge(session, avail, a->off, a->size));
WT_RET(__block_off_remove(session, ael, a->off, NULL));
} /* Case #6 */
} else if (a->off + a->size == b->off + b->size) {
/*
* Remove A from its list
* Decrement A's size by the size of B
* Insert A on its list
*/
WT_RET(__block_off_remove(session, ael, a->off, &a));
a->size -= b->size;
WT_RET(__block_ext_insert(session, ael, a));
/*
* Move caller's B to the next element
* Add B's range to the avail list
* Delete B
*/
*bp = (*bp)->next[0];
WT_RET(__block_merge(session, avail, b->off, b->size));
WT_RET(__block_off_remove(session, bel, b->off, NULL));
} else if /* Case #3, #7 */
(a->off + a->size < b->off + b->size) {
/*
* Add overlap to the avail list
*/
off = b->off;
size = (a->off + a->size) - b->off;
WT_RET(__block_merge(session, avail, off, size));
/*
* Remove A from its list
* Decrement A's size by the overlap
* Insert A on its list
*/
WT_RET(__block_off_remove(session, ael, a->off, &a));
a->size -= size;
WT_RET(__block_ext_insert(session, ael, a));
/*
* Remove B from its list
* Increment/Decrement B's offset/size by the overlap
* Insert B on its list
*/
WT_RET(__block_off_remove(session, bel, b->off, &b));
b->off += size;
b->size -= size;
WT_RET(__block_ext_insert(session, bel, b));
} else { /* Case #5 */
/* Calculate the offset/size of the trailing part of A. */
off = b->off + b->size;
size = (a->off + a->size) - off;
/*
* Remove A from its list
* Decrement A's size by trailing part of A plus B's size
* Insert A on its list
*/
WT_RET(__block_off_remove(session, ael, a->off, &a));
a->size = b->off - a->off;
WT_RET(__block_ext_insert(session, ael, a));
/* Add trailing part of A to A's list as a new element. */
WT_RET(__block_merge(session, ael, off, size));
/*
* Move caller's B to the next element
* Add B's range to the avail list
* Delete B
*/
*bp = (*bp)->next[0];
WT_RET(__block_merge(session, avail, b->off, b->size));
WT_RET(__block_off_remove(session, bel, b->off, NULL));
}
return (0);
}
/*
* __wt_block_extlist_merge --
* Merge one extent list into another.
*/
int
__wt_block_extlist_merge(WT_SESSION_IMPL *session, WT_EXTLIST *a, WT_EXTLIST *b)
{
WT_EXT *ext;
WT_VERBOSE_RET(session, block, "merging %s into %s", a->name, b->name);
WT_EXT_FOREACH(ext, a->off)
WT_RET(__block_merge(session, b, ext->off, ext->size));
return (0);
}
/*
* __wt_block_insert_ext, __block_merge --
* Insert an extent into an extent list, merging if possible.
*/
int
__wt_block_insert_ext(
WT_SESSION_IMPL *session, WT_EXTLIST *el, off_t off, off_t size)
{
/*
* There are currently two copies of this function (this code is a one-
* liner that calls the internal version of the function, which means
* the compiler should compress out the function call). It's that way
* because the interface is still fluid, I'm not convinced there won't
* be a need for a functional split between the internal and external
* versions in the future.
*
* Callers of this function are expected to have already acquired any
* locks required to manipulate the extent list.
*/
return (__block_merge(session, el, off, size));
}
static int
__block_merge(WT_SESSION_IMPL *session, WT_EXTLIST *el, off_t off, off_t size)
{
WT_EXT *ext, *after, *before;
/*
* Retrieve the records preceding/following the offset. If the records
* are contiguous with the free'd offset, combine records.
*/
__block_off_srch_pair(el, off, &before, &after);
if (before != NULL) {
if (before->off + before->size > off)
WT_RET_MSG(session, EINVAL,
"%s: existing range %" PRIdMAX "-%" PRIdMAX
" overlaps with merge range %" PRIdMAX "-%" PRIdMAX,
el->name,
(intmax_t)before->off,
(intmax_t)(before->off + before->size),
(intmax_t)off, (intmax_t)(off + size));
if (before->off + before->size != off)
before = NULL;
}
if (after != NULL) {
if (off + size > after->off)
WT_RET_MSG(session, EINVAL,
"%s: merge range %" PRIdMAX "-%" PRIdMAX
" overlaps with existing range %" PRIdMAX
"-%" PRIdMAX,
el->name,
(intmax_t)off, (intmax_t)(off + size),
(intmax_t)after->off,
(intmax_t)(after->off + after->size));
if (off + size != after->off)
after = NULL;
}
if (before == NULL && after == NULL) {
WT_VERBOSE_RET(session, block,
"%s: insert range %" PRIdMAX "-%" PRIdMAX,
el->name, (intmax_t)off, (intmax_t)(off + size));
return (__block_off_insert(session, el, off, size));
}
/*
* If the "before" offset range abuts, we'll use it as our new record;
* if the "after" offset range also abuts, include its size and remove
* it from the system. Else, only the "after" offset range abuts, use
* the "after" offset range as our new record. In either case, remove
* the record we're going to use, adjust it and re-insert it.
*/
if (before == NULL) {
WT_RET(__block_off_remove(session, el, after->off, &ext));
WT_VERBOSE_RET(session, block,
"%s: range grows from %" PRIdMAX "-%" PRIdMAX ", to %"
PRIdMAX "-%" PRIdMAX,
el->name,
(intmax_t)ext->off, (intmax_t)(ext->off + ext->size),
(intmax_t)off, (intmax_t)(off + ext->size + size));
ext->off = off;
ext->size += size;
} else {
if (after != NULL) {
size += after->size;
WT_RET(
__block_off_remove(session, el, after->off, NULL));
}
WT_RET(__block_off_remove(session, el, before->off, &ext));
WT_VERBOSE_RET(session, block,
"%s: range grows from %" PRIdMAX "-%" PRIdMAX ", to %"
PRIdMAX "-%" PRIdMAX,
el->name,
(intmax_t)ext->off, (intmax_t)(ext->off + ext->size),
(intmax_t)ext->off,
(intmax_t)(ext->off + ext->size + size));
ext->size += size;
}
return (__block_ext_insert(session, el, ext));
}
/*
* __wt_block_extlist_read_avail --
* Read an avail extent list, includes minor special handling.
*/
int
__wt_block_extlist_read_avail(
WT_SESSION_IMPL *session, WT_BLOCK *block, WT_EXTLIST *el, off_t ckpt_size)
{
/* If there isn't a list, we're done. */
if (el->offset == WT_BLOCK_INVALID_OFFSET)
return (0);
WT_RET(__wt_block_extlist_read(session, block, el, ckpt_size));
/*
* Extent blocks are allocated from the available list: if reading the
* avail list, the extent blocks might be included, remove them.
*/
WT_RET_NOTFOUND_OK(
__wt_block_off_remove_overlap(session, el, el->offset, el->size));
return (0);
}
/*
* __wt_block_extlist_read --
* Read an extent list.
*/
int
__wt_block_extlist_read(
WT_SESSION_IMPL *session, WT_BLOCK *block, WT_EXTLIST *el, off_t ckpt_size)
{
WT_DECL_ITEM(tmp);
WT_DECL_RET;
off_t off, size;
const uint8_t *p;
/* If there isn't a list, we're done. */
if (el->offset == WT_BLOCK_INVALID_OFFSET)
return (0);
WT_RET(__wt_scr_alloc(session, el->size, &tmp));
WT_ERR(__wt_block_read_off(
session, block, tmp, el->offset, el->size, el->cksum));
#define WT_EXTLIST_READ(p, v) do { \
uint64_t _v; \
WT_ERR(__wt_vunpack_uint(&(p), 0, &_v)); \
(v) = (off_t)_v; \
} while (0)
p = WT_BLOCK_HEADER_BYTE(tmp->mem);
WT_EXTLIST_READ(p, off);
WT_EXTLIST_READ(p, size);
if (off != WT_BLOCK_EXTLIST_MAGIC || size != 0)
goto corrupted;
for (;;) {
WT_EXTLIST_READ(p, off);
WT_EXTLIST_READ(p, size);
if (off == WT_BLOCK_INVALID_OFFSET)
break;
/*
* We check the offset/size pairs represent valid file ranges,
* then insert them into the list. We don't necessarily have
* to check for offsets past the end of the checkpoint, but it's
* a cheap test to do here and we'd have to do the check as part
* of file verification, regardless.
*/
if (off < WT_BLOCK_DESC_SECTOR ||
(off - WT_BLOCK_DESC_SECTOR) % block->allocsize != 0 ||
size % block->allocsize != 0 ||
off + size > ckpt_size)
corrupted: WT_ERR_MSG(session, WT_ERROR,
"file contains a corrupted %s extent list, range %"
PRIdMAX "-%" PRIdMAX " past end-of-file",
el->name,
(intmax_t)off, (intmax_t)(off + size));
/*
* We could insert instead of merge, because ranges shouldn't
* overlap, but merge knows how to allocate WT_EXT structures,
* and a little paranoia is a good thing (if we corrupted the
* list and crashed, and rolled back to a corrupted checkpoint,
* this might save us?)
*/
WT_ERR(__block_merge(session, el, off, size));
}
if (WT_VERBOSE_ISSET(session, block))
WT_ERR(__block_extlist_dump(session, "read extlist", el, 0));
err: __wt_scr_free(&tmp);
return (ret);
}
/*
* __wt_block_extlist_write --
* Write an extent list at the tail of the file.
*/
int
__wt_block_extlist_write(WT_SESSION_IMPL *session,
WT_BLOCK *block, WT_EXTLIST *el, WT_EXTLIST *additional)
{
WT_DECL_ITEM(tmp);
WT_DECL_RET;
WT_EXT *ext;
WT_PAGE_HEADER *dsk;
uint32_t entries, size;
uint8_t *p;
if (WT_VERBOSE_ISSET(session, block))
WT_RET(__block_extlist_dump(session, "write extlist", el, 0));
/*
* Figure out how many entries we're writing -- if there aren't any
* entries, we're done.
*/
entries = el->entries + (additional == NULL ? 0 : additional->entries);
if (entries == 0) {
el->offset = WT_BLOCK_INVALID_OFFSET;
el->cksum = el->size = 0;
return (0);
}
/*
* Get a scratch buffer, clear the page's header and data, initialize
* the header.
*
* Allocate memory for the extent list entries plus two additional
* entries: the initial WT_BLOCK_EXTLIST_MAGIC/0 pair and the list-
* terminating WT_BLOCK_INVALID_OFFSET/0 pair.
*/
size = (entries + 2) * 2 * WT_INTPACK64_MAXSIZE;
WT_RET(__wt_block_write_size(session, block, &size));
WT_RET(__wt_scr_alloc(session, size, &tmp));
dsk = tmp->mem;
memset(dsk, 0, WT_BLOCK_HEADER_BYTE_SIZE);
dsk->type = WT_PAGE_BLOCK_MANAGER;
#define WT_EXTLIST_WRITE(p, v) \
WT_ERR(__wt_vpack_uint(&(p), 0, (uint64_t)(v)))
/* Fill the page's data. */
p = WT_BLOCK_HEADER_BYTE(dsk);
WT_EXTLIST_WRITE(p, WT_BLOCK_EXTLIST_MAGIC); /* Initial value */
WT_EXTLIST_WRITE(p, 0);
WT_EXT_FOREACH(ext, el->off) { /* Free ranges */
WT_EXTLIST_WRITE(p, ext->off);
WT_EXTLIST_WRITE(p, ext->size);
}
if (additional != NULL)
WT_EXT_FOREACH(ext, additional->off) { /* Free ranges */
WT_EXTLIST_WRITE(p, ext->off);
WT_EXTLIST_WRITE(p, ext->size);
}
WT_EXTLIST_WRITE(p, WT_BLOCK_INVALID_OFFSET); /* Ending value */
WT_EXTLIST_WRITE(p, 0);
dsk->u.datalen =
WT_STORE_SIZE(WT_PTRDIFF32(p, WT_BLOCK_HEADER_BYTE(dsk)));
dsk->mem_size = tmp->size = WT_STORE_SIZE(WT_PTRDIFF32(p, dsk));
#ifdef HAVE_DIAGNOSTIC
/*
* The extent list is written as a valid btree page because the salvage
* functionality might move into the btree layer some day, besides, we
* don't need another format and this way the page format can be easily
* verified.
*/
WT_ERR(__wt_verify_dsk(session, "[extent list check]", tmp));
#endif
/* Write the extent list to disk. */
WT_ERR(__wt_block_write_off(
session, block, tmp, &el->offset, &el->size, &el->cksum, 1, 1));
WT_VERBOSE_ERR(session, block,
"%s written %" PRIdMAX "/%" PRIu32,
el->name, (intmax_t)el->offset, el->size);
err: __wt_scr_free(&tmp);
return (ret);
}
/*
* __wt_block_extlist_truncate --
* Truncate the file based on the last available extent in the list.
*/
int
__wt_block_extlist_truncate(
WT_SESSION_IMPL *session, WT_BLOCK *block, WT_EXTLIST *el)
{
WT_EXT *ext;
WT_FH *fh;
off_t file_size;
fh = block->fh;
/*
* Check if the last available extent is at the end of the file, and if
* so, truncate the file and discard the extent.
*/
if ((ext = __block_extlist_last(el->off)) == NULL)
return (0);
if (ext->off + ext->size != fh->file_size)
return (0);
WT_VERBOSE_RET(session, block,
"truncate file from %" PRIdMAX " to %" PRIdMAX,
(intmax_t)fh->file_size, (intmax_t)ext->off);
/*
* We're about to remove the extent list entry, save the value, we need
* it to reset the cached file size, and that can't happen until after
* truncate and extent list removal succeed.
*/
file_size = ext->off;
WT_RET(__wt_ftruncate(session, fh, file_size));
WT_RET(__block_off_remove(session, el, file_size, NULL));
fh->file_size = file_size;
return (0);
}
/*
* __wt_block_extlist_init --
* Initialize an extent list.
*/
int
__wt_block_extlist_init(WT_SESSION_IMPL *session,
WT_EXTLIST *el, const char *name, const char *extname)
{
char buf[128];
(void)snprintf(buf, sizeof(buf), "%s.%s",
name == NULL ? "" : name, extname == NULL ? "" : extname);
WT_RET(__wt_strdup(session, buf, &el->name));
el->offset = WT_BLOCK_INVALID_OFFSET;
return (0);
}
/*
* __wt_block_extlist_free --
* Discard an extent list.
*/
void
__wt_block_extlist_free(WT_SESSION_IMPL *session, WT_EXTLIST *el)
{
WT_EXT *ext, *next;
WT_SIZE *szp, *nszp;
__wt_free(session, el->name);
for (ext = el->off[0]; ext != NULL; ext = next) {
next = ext->next[0];
__wt_free(session, ext);
}
for (szp = el->sz[0]; szp != NULL; szp = nszp) {
nszp = szp->next[0];
__wt_free(session, szp);
}
/* Extent lists are re-used, clear them. */
memset(el, 0, sizeof(*el));
}
static int
__block_extlist_dump(
WT_SESSION_IMPL *session, const char *tag, WT_EXTLIST *el, int show_size)
{
WT_EXT *ext;
WT_SIZE *szp;
WT_RET(__wt_verbose(
session, "%s: %s: %" PRIu64 " bytes, by offset:%s",
tag, el->name, el->bytes, el->entries == 0 ? " [Empty]" : ""));
if (el->entries == 0)
return (0);
WT_EXT_FOREACH(ext, el->off)
WT_RET(__wt_verbose(session,
"\t{%" PRIuMAX "/%" PRIuMAX "}",
(uintmax_t)ext->off, (uintmax_t)ext->size));
if (!show_size)
return (0);
WT_RET(__wt_verbose(session, "%s: %s: by size:%s",
tag, el->name, el->entries == 0 ? " [Empty]" : ""));
if (el->entries == 0)
return (0);
WT_EXT_FOREACH(szp, el->sz) {
WT_RET(__wt_verbose(session,
"\t{%" PRIuMAX "}", (uintmax_t)szp->size));
WT_EXT_FOREACH_OFF(ext, szp->off)
WT_RET(__wt_verbose(session,
"\t\t{%" PRIuMAX "/%" PRIuMAX "}",
(uintmax_t)ext->off, (uintmax_t)ext->size));
}
return (0);
}
|