HAMMER 35/many: Stabilization pass, cleanups
[dragonfly.git] / sys / vfs / hammer / hammer_reblock.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_reblock.c,v 1.5 2008/03/24 23:50:23 dillon Exp $
35  */
36 /*
37  * HAMMER reblocker - This code frees up fragmented physical space
38  *
39  * HAMMER only keeps track of free space on a big-block basis.  A big-block
40  * containing holes can only be freed by migrating the remaining data in
41  * that big-block into a new big-block, then freeing the big-block.
42  *
43  * This function is called from an ioctl or via the hammer support thread.
44  */
45
46 #include "hammer.h"
47
48 static int hammer_reblock_helper(struct hammer_ioc_reblock *reblock,
49                                  hammer_cursor_t cursor,
50                                  hammer_btree_elm_t elm);
51 static int hammer_reblock_data(struct hammer_ioc_reblock *reblock,
52                                 hammer_cursor_t cursor, hammer_btree_elm_t elm);
53 static int hammer_reblock_record(struct hammer_ioc_reblock *reblock,
54                                 hammer_cursor_t cursor, hammer_btree_elm_t elm);
55 static int hammer_reblock_node(struct hammer_ioc_reblock *reblock,
56                                 hammer_cursor_t cursor, hammer_btree_elm_t elm);
57
58 int
59 hammer_ioc_reblock(hammer_transaction_t trans, hammer_inode_t ip,
60                struct hammer_ioc_reblock *reblock)
61 {
62         struct hammer_cursor cursor;
63         hammer_btree_elm_t elm;
64         int error;
65
66         if (reblock->beg_obj_id >= reblock->end_obj_id)
67                 return(EINVAL);
68         if (reblock->free_level < 0)
69                 return(EINVAL);
70
71 retry:
72         error = hammer_init_cursor(trans, &cursor, NULL);
73         if (error) {
74                 hammer_done_cursor(&cursor);
75                 return(error);
76         }
77         cursor.key_beg.obj_id = reblock->cur_obj_id;
78         cursor.key_beg.key = HAMMER_MIN_KEY;
79         cursor.key_beg.create_tid = 1;
80         cursor.key_beg.delete_tid = 0;
81         cursor.key_beg.rec_type = HAMMER_MIN_RECTYPE;
82         cursor.key_beg.obj_type = 0;
83
84         cursor.key_end.obj_id = reblock->end_obj_id;
85         cursor.key_end.key = HAMMER_MAX_KEY;
86         cursor.key_end.create_tid = HAMMER_MAX_TID - 1;
87         cursor.key_end.delete_tid = 0;
88         cursor.key_end.rec_type = HAMMER_MAX_RECTYPE;
89         cursor.key_end.obj_type = 0;
90
91         cursor.flags |= HAMMER_CURSOR_END_INCLUSIVE;
92
93         error = hammer_btree_first(&cursor);
94         while (error == 0) {
95                 elm = &cursor.node->ondisk->elms[cursor.index];
96                 reblock->cur_obj_id = elm->base.obj_id;
97
98                 error = hammer_reblock_helper(reblock, &cursor, elm);
99                 if (error == 0) {
100                         cursor.flags |= HAMMER_CURSOR_ATEDISK;
101                         error = hammer_btree_iterate(&cursor);
102                 }
103                 if (error == 0)
104                         error = hammer_signal_check(trans->hmp);
105         }
106         if (error == ENOENT)
107                 error = 0;
108         hammer_done_cursor(&cursor);
109         if (error == EDEADLK)
110                 goto retry;
111         return(error);
112 }
113
114 /*
115  * Reblock the B-Tree (leaf) node, record, and/or data if necessary.
116  *
117  * XXX We have no visibility into internal B-Tree nodes at the moment.
118  */
119 static int
120 hammer_reblock_helper(struct hammer_ioc_reblock *reblock,
121                       hammer_cursor_t cursor, hammer_btree_elm_t elm)
122 {
123         hammer_off_t tmp_offset;
124         int error;
125         int zone;
126         int bytes;
127         int cur;
128
129         if (elm->leaf.base.btype != HAMMER_BTREE_TYPE_RECORD)
130                 return(0);
131         error = 0;
132
133         /*
134          * Reblock data.  Note that data embedded in a record is reblocked
135          * by the record reblock code.
136          */
137         tmp_offset = elm->leaf.data_offset;
138         zone = HAMMER_ZONE_DECODE(tmp_offset);          /* can be 0 */
139         if ((zone == HAMMER_ZONE_SMALL_DATA_INDEX ||
140              zone == HAMMER_ZONE_LARGE_DATA_INDEX) && error == 0) {
141                 ++reblock->data_count;
142                 reblock->data_byte_count += elm->leaf.data_len;
143                 bytes = hammer_blockmap_getfree(cursor->trans->hmp, tmp_offset,
144                                                 &cur, &error);
145                 if (error == 0 && cur == 0 && bytes > reblock->free_level) {
146                         kprintf("%6d ", bytes);
147                         error = hammer_cursor_upgrade(cursor);
148                         if (error == 0) {
149                                 error = hammer_reblock_data(reblock,
150                                                             cursor, elm);
151                         }
152                         if (error == 0) {
153                                 ++reblock->data_moves;
154                                 reblock->data_byte_moves += elm->leaf.data_len;
155                         }
156                 }
157         }
158
159         /*
160          * Reblock a record
161          */
162         tmp_offset = elm->leaf.rec_offset;
163         zone = HAMMER_ZONE_DECODE(tmp_offset);
164         if (zone == HAMMER_ZONE_RECORD_INDEX && error == 0) {
165                 ++reblock->record_count;
166                 bytes = hammer_blockmap_getfree(cursor->trans->hmp, tmp_offset,
167                                                 &cur, &error);
168                 if (error == 0 && cur == 0 && bytes > reblock->free_level) {
169                         kprintf("%6d ", bytes);
170                         error = hammer_cursor_upgrade(cursor);
171                         if (error == 0) {
172                                 error = hammer_reblock_record(reblock,
173                                                               cursor, elm);
174                         }
175                         if (error == 0) {
176                                 ++reblock->record_moves;
177                         }
178                 }
179         }
180
181         /*
182          * Reblock a B-Tree node.  Adjust elm to point at the parent's
183          * leaf entry.
184          */
185         tmp_offset = cursor->node->node_offset;
186         zone = HAMMER_ZONE_DECODE(tmp_offset);
187         if (zone == HAMMER_ZONE_BTREE_INDEX && error == 0 &&
188             cursor->index == 0) {
189                 ++reblock->btree_count;
190                 bytes = hammer_blockmap_getfree(cursor->trans->hmp, tmp_offset,
191                                                 &cur, &error);
192                 if (error == 0 && cur == 0 && bytes > reblock->free_level) {
193                         kprintf("%6d ", bytes);
194                         error = hammer_cursor_upgrade(cursor);
195                         if (error == 0) {
196                                 if (cursor->parent)
197                                         elm = &cursor->parent->ondisk->elms[cursor->parent_index];
198                                 else
199                                         elm = NULL;
200                                 error = hammer_reblock_node(reblock,
201                                                             cursor, elm);
202                         }
203                         if (error == 0) {
204                                 ++reblock->btree_moves;
205                         }
206                 }
207         }
208
209         hammer_cursor_downgrade(cursor);
210         return(error);
211 }
212
213 /*
214  * Reblock a record's data.  Both the B-Tree element and record pointers
215  * to the data must be adjusted.
216  */
217 static int
218 hammer_reblock_data(struct hammer_ioc_reblock *reblock,
219                     hammer_cursor_t cursor, hammer_btree_elm_t elm)
220 {
221         struct hammer_buffer *data_buffer = NULL;
222         hammer_off_t ndata_offset;
223         int error;
224         void *ndata;
225
226         error = hammer_btree_extract(cursor, HAMMER_CURSOR_GET_DATA |
227                                              HAMMER_CURSOR_GET_RECORD);
228         if (error)
229                 return (error);
230         ndata = hammer_alloc_data(cursor->trans, elm->leaf.data_len,
231                                   &ndata_offset, &data_buffer, &error);
232         if (error)
233                 goto done;
234
235         /*
236          * Move the data
237          */
238         bcopy(cursor->data, ndata, elm->leaf.data_len);
239         hammer_modify_node(cursor->trans, cursor->node,
240                            &elm->leaf.data_offset, sizeof(hammer_off_t));
241         hammer_modify_record(cursor->trans, cursor->record_buffer,
242                              &cursor->record->base.data_off,
243                              sizeof(hammer_off_t));
244
245         hammer_blockmap_free(cursor->trans,
246                              elm->leaf.data_offset, elm->leaf.data_len);
247
248         cursor->record->base.data_off = ndata_offset;
249         elm->leaf.data_offset = ndata_offset;
250
251 done:
252         if (data_buffer)
253                 hammer_rel_buffer(data_buffer, 0);
254         return (error);
255 }
256
257 /*
258  * Reblock a record.  The B-Tree must be adjusted to point to the new record
259  * and the existing record must be physically destroyed so a FS rebuild
260  * does not see two versions of the same record.
261  */
262 static int
263 hammer_reblock_record(struct hammer_ioc_reblock *reblock,
264                       hammer_cursor_t cursor, hammer_btree_elm_t elm)
265 {
266         struct hammer_buffer *rec_buffer = NULL;
267         hammer_off_t nrec_offset;
268         hammer_off_t ndata_offset;
269         hammer_record_ondisk_t orec;
270         hammer_record_ondisk_t nrec;
271         int error;
272         int inline_data;
273
274         error = hammer_btree_extract(cursor, HAMMER_CURSOR_GET_RECORD);
275         if (error)
276                 return (error);
277
278         nrec = hammer_alloc_record(cursor->trans, &nrec_offset,
279                                    elm->leaf.base.rec_type, &rec_buffer,
280                                    0, NULL, NULL, &error);
281         if (error)
282                 goto done;
283
284         /*
285          * Move the record.  Check for an inline data reference and move that
286          * too if necessary.
287          */
288         orec = cursor->record;
289         bcopy(orec, nrec, sizeof(*nrec));
290
291         if ((orec->base.data_off & HAMMER_OFF_ZONE_MASK) == HAMMER_ZONE_RECORD) {
292                 ndata_offset = orec->base.data_off - elm->leaf.rec_offset;
293                 KKASSERT(ndata_offset < sizeof(*nrec));
294                 ndata_offset += nrec_offset;
295                 inline_data = 1;
296         } else {
297                 ndata_offset = 0;
298                 inline_data = 0;
299         }
300
301         hammer_modify_record(cursor->trans, cursor->record_buffer,
302                              &orec->base.base.rec_type,
303                              sizeof(orec->base.base.rec_type));
304         orec->base.base.rec_type |= HAMMER_RECTYPE_MOVED;
305
306         hammer_blockmap_free(cursor->trans,
307                              elm->leaf.rec_offset, sizeof(*nrec));
308
309         if (hammer_debug_general & 0x4000) {
310                 kprintf("REBLOCK RECD %016llx -> %016llx\n",
311                         elm->leaf.rec_offset, nrec_offset);
312         }
313
314         hammer_modify_node(cursor->trans, cursor->node,
315                            &elm->leaf.rec_offset, sizeof(hammer_off_t));
316         elm->leaf.rec_offset = nrec_offset;
317         if (inline_data) {
318                 hammer_modify_node(cursor->trans, cursor->node,
319                                  &elm->leaf.data_offset, sizeof(hammer_off_t));
320                 elm->leaf.data_offset = ndata_offset;
321         }
322
323 done:
324         if (rec_buffer)
325                 hammer_rel_buffer(rec_buffer, 0);
326         return (error);
327 }
328
329 /*
330  * Reblock a B-Tree (leaf) node.  The parent must be adjusted to point to
331  * the new copy of the leaf node.  elm is a pointer to the parent element
332  * pointing at cursor.node.
333  *
334  * XXX reblock internal nodes too.
335  */
336 static int
337 hammer_reblock_node(struct hammer_ioc_reblock *reblock,
338                     hammer_cursor_t cursor, hammer_btree_elm_t elm)
339 {
340         hammer_node_t onode;
341         hammer_node_t nnode;
342         int error;
343
344         onode = cursor->node;
345         nnode = hammer_alloc_btree(cursor->trans, &error);
346         hammer_lock_ex(&nnode->lock);
347
348         if (nnode == NULL)
349                 return (error);
350
351         /*
352          * Move the node
353          */
354         bcopy(onode->ondisk, nnode->ondisk, sizeof(*nnode->ondisk));
355
356         if (elm) {
357                 /*
358                  * We are not the root of the B-Tree 
359                  */
360                 hammer_modify_node(cursor->trans, cursor->parent,
361                                    &elm->internal.subtree_offset,
362                                    sizeof(elm->internal.subtree_offset));
363                 elm->internal.subtree_offset = nnode->node_offset;
364         } else {
365                 /*
366                  * We are the root of the B-Tree
367                  */
368                 hammer_volume_t volume;
369                         
370                 volume = hammer_get_root_volume(cursor->trans->hmp, &error);
371                 KKASSERT(error == 0);
372
373                 hammer_modify_volume(cursor->trans, volume,
374                                      &volume->ondisk->vol0_btree_root,
375                                      sizeof(hammer_off_t));
376                 volume->ondisk->vol0_btree_root = nnode->node_offset;
377                 hammer_rel_volume(volume, 0);
378         }
379
380         hammer_delete_node(cursor->trans, onode);
381
382         if (hammer_debug_general & 0x4000) {
383                 kprintf("REBLOCK NODE %016llx -> %016llx\n",
384                         onode->node_offset, nnode->node_offset);
385         }
386
387         cursor->node = nnode;
388         hammer_rel_node(onode);
389
390         return (error);
391 }
392