HAMMER 30/many: blockmap work.
[dragonfly.git] / sys / vfs / hammer / hammer_freemap.c
1 /*
2  * Copyright (c) 2008 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sys/vfs/hammer/hammer_freemap.c,v 1.3 2008/02/23 03:01:08 dillon Exp $
35  */
36
37 /*
38  * HAMMER freemap - bigblock allocator.  The freemap is a 2-layer blockmap
39  * with one layer2 entry for each big-block in the filesystem.  Big blocks
40  * are 8MB blocks.
41  *
42  * Our allocator is fairly straightforward, we just iterate through available
43  * blocks looking for a free one.  We shortcut the iteration based on
44  * layer1 availability.
45  */
46
47 #include "hammer.h"
48
49 hammer_off_t
50 hammer_freemap_alloc(hammer_mount_t hmp, hammer_off_t owner, int *errorp)
51 {
52         hammer_volume_t root_volume;
53         hammer_volume_ondisk_t ondisk;
54         hammer_off_t layer1_offset;
55         hammer_off_t layer2_offset;
56         hammer_off_t result_offset;
57         hammer_blockmap_t blockmap;
58         hammer_buffer_t buffer1 = NULL;
59         hammer_buffer_t buffer2 = NULL;
60         struct hammer_blockmap_layer1 *layer1;
61         struct hammer_blockmap_layer2 *layer2;
62         int vol_no;
63         int loops = 0;
64
65         root_volume = hammer_get_root_volume(hmp, errorp);
66         if (*errorp)
67                 return(0);
68         ondisk = root_volume->ondisk;
69
70         blockmap = &ondisk->vol0_blockmap[HAMMER_ZONE_FREEMAP_INDEX];
71         result_offset = blockmap->next_offset;
72         vol_no = HAMMER_VOL_DECODE(result_offset);
73         for (;;) { 
74                 layer1_offset = blockmap->phys_offset +
75                                 HAMMER_BLOCKMAP_LAYER1_OFFSET(result_offset);
76
77                 layer1 = hammer_bread(hmp, layer1_offset, errorp, &buffer1);
78                 if (layer1->phys_offset == HAMMER_BLOCKMAP_UNAVAIL) {
79                         /*
80                          * End-of-volume, try next volume.
81                          */
82 new_volume:
83                         ++vol_no;
84                         if (vol_no >= hmp->nvolumes)
85                                 vol_no = 0;
86                         result_offset = HAMMER_ENCODE_RAW_BUFFER(vol_no, 0);
87                         if (vol_no == 0 && ++loops == 2) {
88                                 *errorp = ENOSPC;
89                                 result_offset = 0;
90                                 goto done;
91                         }
92                 } else {
93                         layer2_offset = layer1->phys_offset +
94                                 HAMMER_BLOCKMAP_LAYER2_OFFSET(result_offset);
95                         layer2 = hammer_bread(hmp, layer2_offset, errorp,
96                                               &buffer2);
97                         if (layer2->u.owner == HAMMER_BLOCKMAP_FREE) {
98                                 hammer_modify_buffer(buffer2, layer2,
99                                                      sizeof(*layer2));
100                                 layer2->u.owner = owner &
101                                                 ~HAMMER_LARGEBLOCK_MASK64;
102                                 hammer_modify_buffer(buffer1, layer1,
103                                                      sizeof(*layer1));
104                                 --layer1->blocks_free;
105                                 hammer_modify_volume(root_volume, &ondisk->vol0_stat_freebigblocks,
106                                                      sizeof(ondisk->vol0_stat_freebigblocks));
107                                 --ondisk->vol0_stat_freebigblocks;
108                                 break;
109                         }
110                         if (layer1->blocks_free == 0 ||
111                             layer2->u.owner == HAMMER_BLOCKMAP_UNAVAIL) {
112                                 /*
113                                  * layer2 has no free blocks remaining,
114                                  * skip to the next layer.
115                                  */
116                                 result_offset = (result_offset + HAMMER_BLOCKMAP_LAYER2_MASK) & ~HAMMER_BLOCKMAP_LAYER2_MASK;
117                                 if (HAMMER_VOL_DECODE(result_offset) != vol_no)
118                                         goto new_volume;
119                         } else {
120                                 result_offset += HAMMER_LARGEBLOCK_SIZE;
121                                 if (HAMMER_VOL_DECODE(result_offset) != vol_no)
122                                         goto new_volume;
123                         }
124                 }
125         }
126         kprintf("hammer_freemap_alloc %016llx\n", result_offset);
127         hammer_modify_volume(root_volume, blockmap, sizeof(*blockmap));
128         blockmap->next_offset = result_offset + HAMMER_LARGEBLOCK_SIZE;
129 done:
130         if (buffer1)
131                 hammer_rel_buffer(buffer1, 0);
132         if (buffer2)
133                 hammer_rel_buffer(buffer2, 0);
134         hammer_rel_volume(root_volume, 0);
135         return(result_offset);
136 }
137
138 void
139 hammer_freemap_free(hammer_mount_t hmp, hammer_off_t phys_offset, 
140                     hammer_off_t owner, int *errorp)
141 {
142         hammer_volume_t root_volume;
143         hammer_volume_ondisk_t ondisk;
144         hammer_off_t layer1_offset;
145         hammer_off_t layer2_offset;
146         hammer_blockmap_t blockmap;
147         hammer_buffer_t buffer1 = NULL;
148         hammer_buffer_t buffer2 = NULL;
149         struct hammer_blockmap_layer1 *layer1;
150         struct hammer_blockmap_layer2 *layer2;
151
152         KKASSERT((phys_offset & HAMMER_LARGEBLOCK_MASK64) == 0);
153
154         kprintf("hammer_freemap_free %016llx\n", phys_offset);
155
156         root_volume = hammer_get_root_volume(hmp, errorp);
157         if (*errorp)
158                 return;
159         ondisk = root_volume->ondisk;
160
161         blockmap = &ondisk->vol0_blockmap[HAMMER_ZONE_FREEMAP_INDEX];
162         layer1_offset = blockmap->phys_offset +
163                         HAMMER_BLOCKMAP_LAYER1_OFFSET(phys_offset);
164         layer1 = hammer_bread(hmp, layer1_offset, errorp, &buffer1);
165
166         KKASSERT(layer1->phys_offset != HAMMER_BLOCKMAP_UNAVAIL);
167
168         layer2_offset = layer1->phys_offset +
169                         HAMMER_BLOCKMAP_LAYER2_OFFSET(phys_offset);
170         layer2 = hammer_bread(hmp, layer2_offset, errorp, &buffer2);
171
172         KKASSERT(layer2->u.owner == (owner & ~HAMMER_LARGEBLOCK_MASK64));
173         hammer_modify_buffer(buffer1, layer1, sizeof(*layer1));
174         ++layer1->blocks_free;
175         hammer_modify_buffer(buffer2, layer2, sizeof(*layer2));
176         layer2->u.owner = HAMMER_BLOCKMAP_FREE;
177
178         hammer_modify_volume(root_volume, &ondisk->vol0_stat_freebigblocks,
179                              sizeof(ondisk->vol0_stat_freebigblocks));
180         ++ondisk->vol0_stat_freebigblocks;
181
182         if (buffer1)
183                 hammer_rel_buffer(buffer1, 0);
184         if (buffer2)
185                 hammer_rel_buffer(buffer2, 0);
186         hammer_rel_volume(root_volume, 0);
187 }
188