HAMMER 54D/Many: Performance tuning.
[dragonfly.git] / sys / vfs / hammer / hammer_cursor.c
1 /*
2  * Copyright (c) 2007-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_cursor.c,v 1.29 2008/06/13 00:25:33 dillon Exp $
35  */
36
37 /*
38  * HAMMER B-Tree index - cursor support routines
39  */
40 #include "hammer.h"
41
42 static int hammer_load_cursor_parent(hammer_cursor_t cursor, int try_exclusive);
43
44 /*
45  * Initialize a fresh cursor using the B-Tree node cache.  If the cache
46  * is not available initialize a fresh cursor at the root of the filesystem.
47  */
48 int
49 hammer_init_cursor(hammer_transaction_t trans, hammer_cursor_t cursor,
50                    struct hammer_node **cache, hammer_inode_t ip)
51 {
52         hammer_volume_t volume;
53         hammer_node_t node;
54         int error;
55
56         bzero(cursor, sizeof(*cursor));
57
58         cursor->trans = trans;
59
60         /*
61          * If the cursor operation is on behalf of an inode, lock
62          * the inode.
63          */
64         if ((cursor->ip = ip) != NULL) {
65                 ++ip->cursor_ip_refs;
66                 if (trans->type == HAMMER_TRANS_FLS)
67                         hammer_lock_ex(&ip->lock);
68                 else
69                         hammer_lock_sh(&ip->lock);
70         }
71
72         /*
73          * Step 1 - acquire a locked node from the cache if possible
74          */
75         if (cache && *cache) {
76                 node = hammer_ref_node_safe(trans->hmp, cache, &error);
77                 if (error == 0) {
78                         hammer_lock_sh(&node->lock);
79                         if (node->flags & HAMMER_NODE_DELETED) {
80                                 hammer_unlock(&node->lock);
81                                 hammer_rel_node(node);
82                                 node = NULL;
83                         }
84                 }
85         } else {
86                 node = NULL;
87         }
88
89         /*
90          * Step 2 - If we couldn't get a node from the cache, get
91          * the one from the root of the filesystem.
92          */
93         while (node == NULL) {
94                 volume = hammer_get_root_volume(trans->hmp, &error);
95                 if (error)
96                         break;
97                 node = hammer_get_node(trans->hmp,
98                                        volume->ondisk->vol0_btree_root,
99                                        0, &error);
100                 hammer_rel_volume(volume, 0);
101                 if (error)
102                         break;
103                 hammer_lock_sh(&node->lock);
104
105                 /*
106                  * If someone got in before we could lock the node, retry.
107                  */
108                 if (node->flags & HAMMER_NODE_DELETED) {
109                         hammer_unlock(&node->lock);
110                         hammer_rel_node(node);
111                         node = NULL;
112                         continue;
113                 }
114                 if (volume->ondisk->vol0_btree_root != node->node_offset) {
115                         hammer_unlock(&node->lock);
116                         hammer_rel_node(node);
117                         node = NULL;
118                         continue;
119                 }
120         }
121
122         /*
123          * Step 3 - finish initializing the cursor by acquiring the parent
124          */
125         cursor->node = node;
126         if (error == 0)
127                 error = hammer_load_cursor_parent(cursor, 0);
128         KKASSERT(error == 0);
129         /* if (error) hammer_done_cursor(cursor); */
130         return(error);
131 }
132
133 #if 0
134 int
135 hammer_reinit_cursor(hammer_cursor_t cursor)
136 {
137         hammer_transaction_t trans;
138         hammer_inode_t ip;
139         struct hammer_node **cache;
140
141         trans = cursor->trans;
142         ip = cursor->ip;
143         hammer_done_cursor(cursor);
144         cache = ip ? &ip->cache[0] : NULL;
145         error = hammer_init_cursor(trans, cursor, cache, ip);
146         return (error);
147 }
148
149 #endif
150
151 /*
152  * Normalize a cursor.  Sometimes cursors can be left in a state
153  * where node is NULL.  If the cursor is in this state, cursor up.
154  */
155 void
156 hammer_normalize_cursor(hammer_cursor_t cursor)
157 {
158         if (cursor->node == NULL) {
159                 KKASSERT(cursor->parent != NULL);
160                 hammer_cursor_up(cursor);
161         }
162 }
163
164
165 /*
166  * We are finished with a cursor.  We NULL out various fields as sanity
167  * check, in case the structure is inappropriately used afterwords.
168  */
169 void
170 hammer_done_cursor(hammer_cursor_t cursor)
171 {
172         hammer_inode_t ip;
173
174         if (cursor->parent) {
175                 hammer_unlock(&cursor->parent->lock);
176                 hammer_rel_node(cursor->parent);
177                 cursor->parent = NULL;
178         }
179         if (cursor->node) {
180                 hammer_unlock(&cursor->node->lock);
181                 hammer_rel_node(cursor->node);
182                 cursor->node = NULL;
183         }
184         if (cursor->data_buffer) {
185                 hammer_rel_buffer(cursor->data_buffer, 0);
186                 cursor->data_buffer = NULL;
187         }
188         if (cursor->record_buffer) {
189                 hammer_rel_buffer(cursor->record_buffer, 0);
190                 cursor->record_buffer = NULL;
191         }
192         if ((ip = cursor->ip) != NULL) {
193                 hammer_mem_done(cursor);
194                 KKASSERT(ip->cursor_ip_refs > 0);
195                 --ip->cursor_ip_refs;
196                 hammer_unlock(&ip->lock);
197                 cursor->ip = NULL;
198         }
199
200
201         /*
202          * If we deadlocked this node will be referenced.  Do a quick
203          * lock/unlock to wait for the deadlock condition to clear.
204          */
205         if (cursor->deadlk_node) {
206                 hammer_lock_ex_ident(&cursor->deadlk_node->lock, "hmrdlk");
207                 hammer_unlock(&cursor->deadlk_node->lock);
208                 hammer_rel_node(cursor->deadlk_node);
209                 cursor->deadlk_node = NULL;
210         }
211         if (cursor->deadlk_rec) {
212                 hammer_wait_mem_record_ident(cursor->deadlk_rec, "hmmdlr");
213                 hammer_rel_mem_record(cursor->deadlk_rec);
214                 cursor->deadlk_rec = NULL;
215         }
216
217         cursor->data = NULL;
218         cursor->leaf = NULL;
219         cursor->left_bound = NULL;
220         cursor->right_bound = NULL;
221         cursor->trans = NULL;
222 }
223
224 /*
225  * Upgrade cursor->node and cursor->parent to exclusive locks.  This
226  * function can return EDEADLK.
227  *
228  * The lock must already be either held shared or already held exclusively
229  * by us.
230  *
231  * If we fail to upgrade the lock and cursor->deadlk_node is NULL, 
232  * we add another reference to the node that failed and set
233  * cursor->deadlk_node so hammer_done_cursor() can block on it.
234  */
235 int
236 hammer_cursor_upgrade(hammer_cursor_t cursor)
237 {
238         int error;
239
240         error = hammer_lock_upgrade(&cursor->node->lock);
241         if (error && cursor->deadlk_node == NULL) {
242                 cursor->deadlk_node = cursor->node;
243                 hammer_ref_node(cursor->deadlk_node);
244         } else if (error == 0 && cursor->parent) {
245                 error = hammer_lock_upgrade(&cursor->parent->lock);
246                 if (error && cursor->deadlk_node == NULL) {
247                         cursor->deadlk_node = cursor->parent;
248                         hammer_ref_node(cursor->deadlk_node);
249                 }
250         }
251         return(error);
252 }
253
254 int
255 hammer_cursor_upgrade_node(hammer_cursor_t cursor)
256 {
257         int error;
258
259         error = hammer_lock_upgrade(&cursor->node->lock);
260         if (error && cursor->deadlk_node == NULL) {
261                 cursor->deadlk_node = cursor->node;
262                 hammer_ref_node(cursor->deadlk_node);
263         }
264         return(error);
265 }
266
267 /*
268  * Downgrade cursor->node and cursor->parent to shared locks.  This
269  * function can return EDEADLK.
270  */
271 void
272 hammer_cursor_downgrade(hammer_cursor_t cursor)
273 {
274         if (hammer_lock_excl_owned(&cursor->node->lock, curthread))
275                 hammer_lock_downgrade(&cursor->node->lock);
276         if (cursor->parent &&
277             hammer_lock_excl_owned(&cursor->parent->lock, curthread)) {
278                 hammer_lock_downgrade(&cursor->parent->lock);
279         }
280 }
281
282 /*
283  * Seek the cursor to the specified node and index.
284  */
285 int
286 hammer_cursor_seek(hammer_cursor_t cursor, hammer_node_t node, int index)
287 {
288         int error;
289
290         hammer_cursor_downgrade(cursor);
291         error = 0;
292
293         if (cursor->node != node) {
294                 hammer_unlock(&cursor->node->lock);
295                 hammer_rel_node(cursor->node);
296                 cursor->node = node;
297                 hammer_ref_node(node);
298                 hammer_lock_sh(&node->lock);
299                 KKASSERT ((node->flags & HAMMER_NODE_DELETED) == 0);
300
301                 if (cursor->parent) {
302                         hammer_unlock(&cursor->parent->lock);
303                         hammer_rel_node(cursor->parent);
304                         cursor->parent = NULL;
305                         cursor->parent_index = 0;
306                 }
307                 error = hammer_load_cursor_parent(cursor, 0);
308         }
309         cursor->index = index;
310         return (error);
311 }
312
313 /*
314  * Load the parent of cursor->node into cursor->parent.
315  */
316 static
317 int
318 hammer_load_cursor_parent(hammer_cursor_t cursor, int try_exclusive)
319 {
320         hammer_mount_t hmp;
321         hammer_node_t parent;
322         hammer_node_t node;
323         hammer_btree_elm_t elm;
324         int error;
325         int i;
326
327         hmp = cursor->trans->hmp;
328
329         if (cursor->node->ondisk->parent) {
330                 node = cursor->node;
331                 parent = hammer_get_node(hmp, node->ondisk->parent, 0, &error);
332                 if (error)
333                         return(error);
334                 if (try_exclusive) {
335                         if (hammer_lock_ex_try(&parent->lock)) {
336                                 hammer_rel_node(parent);
337                                 return(EDEADLK);
338                         }
339                 } else {
340                         hammer_lock_sh(&parent->lock);
341                 }
342                 KKASSERT ((parent->flags & HAMMER_NODE_DELETED) == 0);
343                 elm = NULL;
344                 for (i = 0; i < parent->ondisk->count; ++i) {
345                         elm = &parent->ondisk->elms[i];
346                         if (parent->ondisk->elms[i].internal.subtree_offset ==
347                             node->node_offset) {
348                                 break;
349                         }
350                 }
351                 if (i == parent->ondisk->count) {
352                         hammer_unlock(&parent->lock);
353                         panic("Bad B-Tree link: parent %p node %p\n", parent, node);
354                 }
355                 KKASSERT(i != parent->ondisk->count);
356                 cursor->parent = parent;
357                 cursor->parent_index = i;
358                 cursor->left_bound = &elm[0].internal.base;
359                 cursor->right_bound = &elm[1].internal.base;
360                 return(error);
361         } else {
362                 cursor->parent = NULL;
363                 cursor->parent_index = 0;
364                 cursor->left_bound = &hmp->root_btree_beg;
365                 cursor->right_bound = &hmp->root_btree_end;
366                 error = 0;
367         }
368         return(error);
369 }
370
371 /*
372  * Cursor up to our parent node.  Return ENOENT if we are at the root of
373  * the filesystem.
374  */
375 int
376 hammer_cursor_up(hammer_cursor_t cursor)
377 {
378         int error;
379
380         hammer_cursor_downgrade(cursor);
381
382         /*
383          * If the parent is NULL we are at the root of the B-Tree and
384          * return ENOENT.
385          */
386         if (cursor->parent == NULL)
387                 return (ENOENT);
388
389         /*
390          * Set the node to its parent. 
391          */
392         hammer_unlock(&cursor->node->lock);
393         hammer_rel_node(cursor->node);
394         cursor->node = cursor->parent;
395         cursor->index = cursor->parent_index;
396         cursor->parent = NULL;
397         cursor->parent_index = 0;
398
399         error = hammer_load_cursor_parent(cursor, 0);
400         return(error);
401 }
402
403 /*
404  * Special cursor up given a locked cursor.  The orignal node is not
405  * unlocked and released and the cursor is not downgraded.  If we are
406  * unable to acquire and lock the parent, EDEADLK is returned.
407  */
408 int
409 hammer_cursor_up_locked(hammer_cursor_t cursor)
410 {
411         hammer_node_t save;
412         int error;
413
414         /*
415          * If the parent is NULL we are at the root of the B-Tree and
416          * return ENOENT.
417          */
418         if (cursor->parent == NULL)
419                 return (ENOENT);
420
421         save = cursor->node;
422
423         /*
424          * Set the node to its parent. 
425          */
426         cursor->node = cursor->parent;
427         cursor->index = cursor->parent_index;
428         cursor->parent = NULL;
429         cursor->parent_index = 0;
430
431         /*
432          * load the new parent, attempt to exclusively lock it.  Note that
433          * we are still holding the old parent (now cursor->node) exclusively
434          * locked.  This can return EDEADLK.
435          */
436         error = hammer_load_cursor_parent(cursor, 1);
437         if (error) {
438                 cursor->parent = cursor->node;
439                 cursor->parent_index = cursor->index;
440                 cursor->node = save;
441                 cursor->index = 0;
442         }
443         return(error);
444 }
445
446
447 /*
448  * Cursor down through the current node, which must be an internal node.
449  *
450  * This routine adjusts the cursor and sets index to 0.
451  */
452 int
453 hammer_cursor_down(hammer_cursor_t cursor)
454 {
455         hammer_node_t node;
456         hammer_btree_elm_t elm;
457         int error;
458
459         /*
460          * The current node becomes the current parent
461          */
462         hammer_cursor_downgrade(cursor);
463         node = cursor->node;
464         KKASSERT(cursor->index >= 0 && cursor->index < node->ondisk->count);
465         if (cursor->parent) {
466                 hammer_unlock(&cursor->parent->lock);
467                 hammer_rel_node(cursor->parent);
468         }
469         cursor->parent = node;
470         cursor->parent_index = cursor->index;
471         cursor->node = NULL;
472         cursor->index = 0;
473
474         /*
475          * Extract element to push into at (node,index), set bounds.
476          */
477         elm = &node->ondisk->elms[cursor->parent_index];
478
479         /*
480          * Ok, push down into elm.  If elm specifies an internal or leaf
481          * node the current node must be an internal node.  If elm specifies
482          * a spike then the current node must be a leaf node.
483          */
484         switch(elm->base.btype) {
485         case HAMMER_BTREE_TYPE_INTERNAL:
486         case HAMMER_BTREE_TYPE_LEAF:
487                 KKASSERT(node->ondisk->type == HAMMER_BTREE_TYPE_INTERNAL);
488                 KKASSERT(elm->internal.subtree_offset != 0);
489                 cursor->left_bound = &elm[0].internal.base;
490                 cursor->right_bound = &elm[1].internal.base;
491                 node = hammer_get_node(cursor->trans->hmp,
492                                        elm->internal.subtree_offset, 0, &error);
493                 if (error == 0) {
494                         KASSERT(elm->base.btype == node->ondisk->type, ("BTYPE MISMATCH %c %c NODE %p\n", elm->base.btype, node->ondisk->type, node));
495                         if (node->ondisk->parent != cursor->parent->node_offset)
496                                 panic("node %p %016llx vs %016llx\n", node, node->ondisk->parent, cursor->parent->node_offset);
497                         KKASSERT(node->ondisk->parent == cursor->parent->node_offset);
498                 }
499                 break;
500         default:
501                 panic("hammer_cursor_down: illegal btype %02x (%c)\n",
502                       elm->base.btype,
503                       (elm->base.btype ? elm->base.btype : '?'));
504                 break;
505         }
506         if (error == 0) {
507                 hammer_lock_sh(&node->lock);
508                 KKASSERT ((node->flags & HAMMER_NODE_DELETED) == 0);
509                 cursor->node = node;
510                 cursor->index = 0;
511         }
512         return(error);
513 }
514