HAMMER 26/many: Misc features.
[dragonfly.git] / sys / vfs / hammer / hammer_inode.c
1 /*
2  * Copyright (c) 2007 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_inode.c,v 1.28 2008/02/06 08:59:28 dillon Exp $
35  */
36
37 #include "hammer.h"
38 #include <sys/buf.h>
39 #include <sys/buf2.h>
40
41 /*
42  * The kernel is not actively referencing this vnode but is still holding
43  * it cached.
44  */
45 int
46 hammer_vop_inactive(struct vop_inactive_args *ap)
47 {
48         struct hammer_inode *ip = VTOI(ap->a_vp);
49
50         /*
51          * Degenerate case
52          */
53         if (ip == NULL) {
54                 vrecycle(ap->a_vp);
55                 return(0);
56         }
57
58         /*
59          * If the inode no longer has any references we recover its
60          * in-memory resources immediately.
61          */
62         if (ip->ino_rec.ino_nlinks == 0)
63                 vrecycle(ap->a_vp);
64         return(0);
65 }
66
67 /*
68  * Release the vnode association.  This is typically (but not always)
69  * the last reference on the inode and will flush the inode to the
70  * buffer cache.
71  *
72  * XXX Currently our sync code only runs through inodes with vnode
73  * associations, so we depend on hammer_rel_inode() to sync any inode
74  * record data to the block device prior to losing the association.
75  * Otherwise transactions that the user expected to be distinct by
76  * doing a manual sync may be merged.
77  */
78 int
79 hammer_vop_reclaim(struct vop_reclaim_args *ap)
80 {
81         struct hammer_inode *ip;
82         struct vnode *vp;
83
84         vp = ap->a_vp;
85
86         if ((ip = vp->v_data) != NULL) {
87                 vp->v_data = NULL;
88                 ip->vp = NULL;
89                 hammer_rel_inode(ip, 0);
90         }
91         return(0);
92 }
93
94 /*
95  * Return a locked vnode for the specified inode.  The inode must be
96  * referenced but NOT LOCKED on entry and will remain referenced on
97  * return.
98  */
99 int
100 hammer_get_vnode(struct hammer_inode *ip, int lktype, struct vnode **vpp)
101 {
102         struct vnode *vp;
103         int error = 0;
104
105         for (;;) {
106                 if ((vp = ip->vp) == NULL) {
107                         error = getnewvnode(VT_HAMMER, ip->hmp->mp, vpp, 0, 0);
108                         if (error)
109                                 break;
110                         hammer_lock_ex(&ip->lock);
111                         if (ip->vp != NULL) {
112                                 hammer_unlock(&ip->lock);
113                                 vp->v_type = VBAD;
114                                 vx_put(vp);
115                                 continue;
116                         }
117                         hammer_ref(&ip->lock);
118                         vp = *vpp;
119                         ip->vp = vp;
120                         vp->v_type = hammer_get_vnode_type(
121                                             ip->ino_rec.base.base.obj_type);
122
123                         switch(ip->ino_rec.base.base.obj_type) {
124                         case HAMMER_OBJTYPE_CDEV:
125                         case HAMMER_OBJTYPE_BDEV:
126                                 vp->v_ops = &ip->hmp->mp->mnt_vn_spec_ops;
127                                 addaliasu(vp, ip->ino_data.rmajor,
128                                           ip->ino_data.rminor);
129                                 break;
130                         case HAMMER_OBJTYPE_FIFO:
131                                 vp->v_ops = &ip->hmp->mp->mnt_vn_fifo_ops;
132                                 break;
133                         default:
134                                 break;
135                         }
136
137                         /*
138                          * Only mark as the root vnode if the ip is not
139                          * historical, otherwise the VFS cache will get
140                          * confused.  The other half of the special handling
141                          * is in hammer_vop_nlookupdotdot().
142                          */
143                         if (ip->obj_id == HAMMER_OBJID_ROOT &&
144                             ip->obj_asof == ip->hmp->asof) {
145                                 vp->v_flag |= VROOT;
146                         }
147
148                         vp->v_data = (void *)ip;
149                         /* vnode locked by getnewvnode() */
150                         /* make related vnode dirty if inode dirty? */
151                         hammer_unlock(&ip->lock);
152                         if (vp->v_type == VREG)
153                                 vinitvmio(vp, ip->ino_rec.ino_size);
154                         break;
155                 }
156
157                 /*
158                  * loop if the vget fails (aka races), or if the vp
159                  * no longer matches ip->vp.
160                  */
161                 if (vget(vp, LK_EXCLUSIVE) == 0) {
162                         if (vp == ip->vp)
163                                 break;
164                         vput(vp);
165                 }
166         }
167         *vpp = vp;
168         return(error);
169 }
170
171 /*
172  * Acquire a HAMMER inode.  The returned inode is not locked.  These functions
173  * do not attach or detach the related vnode (use hammer_get_vnode() for
174  * that).
175  *
176  * The flags argument is only applied for newly created inodes, and only
177  * certain flags are inherited.
178  */
179 struct hammer_inode *
180 hammer_get_inode(struct hammer_mount *hmp, struct hammer_node **cache,
181                  u_int64_t obj_id, hammer_tid_t asof, int flags, int *errorp)
182 {
183         struct hammer_inode_info iinfo;
184         struct hammer_cursor cursor;
185         struct hammer_inode *ip;
186
187         /*
188          * Determine if we already have an inode cached.  If we do then
189          * we are golden.
190          */
191         iinfo.obj_id = obj_id;
192         iinfo.obj_asof = asof;
193 loop:
194         ip = hammer_ino_rb_tree_RB_LOOKUP_INFO(&hmp->rb_inos_root, &iinfo);
195         if (ip) {
196                 hammer_ref(&ip->lock);
197                 *errorp = 0;
198                 return(ip);
199         }
200
201         ip = kmalloc(sizeof(*ip), M_HAMMER, M_WAITOK|M_ZERO);
202         ++hammer_count_inodes;
203         ip->obj_id = obj_id;
204         ip->obj_asof = iinfo.obj_asof;
205         ip->hmp = hmp;
206         ip->flags = flags & HAMMER_INODE_RO;
207         if (hmp->ronly)
208                 ip->flags |= HAMMER_INODE_RO;
209         RB_INIT(&ip->rec_tree);
210
211         /*
212          * Locate the on-disk inode.
213          */
214 retry:
215         hammer_init_cursor_hmp(&cursor, cache, hmp);
216         cursor.key_beg.obj_id = ip->obj_id;
217         cursor.key_beg.key = 0;
218         cursor.key_beg.create_tid = 0;
219         cursor.key_beg.delete_tid = 0;
220         cursor.key_beg.rec_type = HAMMER_RECTYPE_INODE;
221         cursor.key_beg.obj_type = 0;
222         cursor.asof = iinfo.obj_asof;
223         cursor.flags = HAMMER_CURSOR_GET_RECORD | HAMMER_CURSOR_GET_DATA |
224                        HAMMER_CURSOR_ASOF;
225
226         *errorp = hammer_btree_lookup(&cursor);
227         if (*errorp == EDEADLK) {
228                 hammer_done_cursor(&cursor);
229                 goto retry;
230         }
231
232         /*
233          * On success the B-Tree lookup will hold the appropriate
234          * buffer cache buffers and provide a pointer to the requested
235          * information.  Copy the information to the in-memory inode
236          * and cache the B-Tree node to improve future operations.
237          */
238         if (*errorp == 0) {
239                 ip->ino_rec = cursor.record->inode;
240                 ip->ino_data = cursor.data->inode;
241                 hammer_cache_node(cursor.node, &ip->cache[0]);
242                 if (cache)
243                         hammer_cache_node(cursor.node, cache);
244         }
245
246         /*
247          * On success load the inode's record and data and insert the
248          * inode into the B-Tree.  It is possible to race another lookup
249          * insertion of the same inode so deal with that condition too.
250          *
251          * The cursor's locked node interlocks against others creating and
252          * destroying ip while we were blocked.
253          */
254         if (*errorp == 0) {
255                 hammer_ref(&ip->lock);
256                 if (RB_INSERT(hammer_ino_rb_tree, &hmp->rb_inos_root, ip)) {
257                         hammer_uncache_node(&ip->cache[0]);
258                         hammer_uncache_node(&ip->cache[1]);
259                         hammer_unref(&ip->lock);
260                         --hammer_count_inodes;
261                         kfree(ip, M_HAMMER);
262                         hammer_done_cursor(&cursor);
263                         goto loop;
264                 }
265                 ip->flags |= HAMMER_INODE_ONDISK;
266         } else {
267                 --hammer_count_inodes;
268                 kfree(ip, M_HAMMER);
269                 ip = NULL;
270         }
271         hammer_done_cursor(&cursor);
272         return (ip);
273 }
274
275 /*
276  * Create a new filesystem object, returning the inode in *ipp.  The
277  * returned inode will be referenced but not locked.
278  *
279  * The inode is created in-memory and will be delay-synchronized to the
280  * disk.
281  */
282 int
283 hammer_create_inode(hammer_transaction_t trans, struct vattr *vap,
284                     struct ucred *cred, hammer_inode_t dip,
285                     struct hammer_inode **ipp)
286 {
287         hammer_mount_t hmp;
288         hammer_inode_t ip;
289         uid_t xuid;
290
291         hmp = trans->hmp;
292         ip = kmalloc(sizeof(*ip), M_HAMMER, M_WAITOK|M_ZERO);
293         ++hammer_count_inodes;
294         ip->obj_id = hammer_alloc_tid(trans);
295         KKASSERT(ip->obj_id != 0);
296         ip->obj_asof = hmp->asof;
297         ip->hmp = hmp;
298         ip->flags = HAMMER_INODE_DDIRTY | HAMMER_INODE_RDIRTY |
299                     HAMMER_INODE_ITIMES | HAMMER_INODE_TIDLOCKED;
300         ip->last_tid = trans->tid;
301
302         RB_INIT(&ip->rec_tree);
303
304         ip->ino_rec.ino_atime = trans->tid;
305         ip->ino_rec.ino_mtime = trans->tid;
306         ip->ino_rec.ino_size = 0;
307         ip->ino_rec.ino_nlinks = 0;
308         /* XXX */
309         ip->ino_rec.base.base.btype = HAMMER_BTREE_TYPE_RECORD;
310         ip->ino_rec.base.base.obj_id = ip->obj_id;
311         ip->ino_rec.base.base.key = 0;
312         ip->ino_rec.base.base.create_tid = trans->tid;
313         ip->ino_rec.base.base.delete_tid = 0;
314         ip->ino_rec.base.base.rec_type = HAMMER_RECTYPE_INODE;
315         ip->ino_rec.base.base.obj_type = hammer_get_obj_type(vap->va_type);
316
317         ip->ino_data.version = HAMMER_INODE_DATA_VERSION;
318         ip->ino_data.mode = vap->va_mode;
319         ip->ino_data.ctime = trans->tid;
320         ip->ino_data.parent_obj_id = (dip) ? dip->ino_rec.base.base.obj_id : 0;
321
322         switch(ip->ino_rec.base.base.obj_type) {
323         case HAMMER_OBJTYPE_CDEV:
324         case HAMMER_OBJTYPE_BDEV:
325                 ip->ino_data.rmajor = vap->va_rmajor;
326                 ip->ino_data.rminor = vap->va_rminor;
327                 break;
328         default:
329                 break;
330         }
331
332         /*
333          * Calculate default uid/gid and overwrite with information from
334          * the vap.
335          */
336         xuid = hammer_to_unix_xid(&dip->ino_data.uid);
337         ip->ino_data.gid = dip->ino_data.gid;
338         xuid = vop_helper_create_uid(hmp->mp, dip->ino_data.mode, xuid, cred,
339                                      &vap->va_mode);
340         ip->ino_data.mode = vap->va_mode;
341
342         if (vap->va_vaflags & VA_UID_UUID_VALID)
343                 ip->ino_data.uid = vap->va_uid_uuid;
344         else if (vap->va_uid != (uid_t)VNOVAL)
345                 hammer_guid_to_uuid(&ip->ino_data.uid, xuid);
346         if (vap->va_vaflags & VA_GID_UUID_VALID)
347                 ip->ino_data.gid = vap->va_gid_uuid;
348         else if (vap->va_gid != (gid_t)VNOVAL)
349                 hammer_guid_to_uuid(&ip->ino_data.gid, vap->va_gid);
350
351         hammer_ref(&ip->lock);
352         if (RB_INSERT(hammer_ino_rb_tree, &hmp->rb_inos_root, ip)) {
353                 hammer_unref(&ip->lock);
354                 panic("hammer_create_inode: duplicate obj_id %llx", ip->obj_id);
355         }
356         *ipp = ip;
357         return(0);
358 }
359
360 /*
361  * Called by hammer_sync_inode().
362  */
363 static int
364 hammer_update_inode(hammer_inode_t ip)
365 {
366         struct hammer_cursor cursor;
367         struct hammer_cursor *spike = NULL;
368         hammer_record_t record;
369         int error;
370         hammer_tid_t last_tid;
371
372         /*
373          * Locate the record on-disk and mark it as deleted.  Both the B-Tree
374          * node and the record must be marked deleted.  The record may or
375          * may not be physically deleted, depending on the retention policy.
376          *
377          * If the inode has already been deleted on-disk we have nothing
378          * to do.
379          *
380          * XXX Update the inode record and data in-place if the retention
381          * policy allows it.
382          */
383         last_tid = ip->last_tid;
384 retry:
385         error = 0;
386
387         if ((ip->flags & (HAMMER_INODE_ONDISK|HAMMER_INODE_DELONDISK)) ==
388             HAMMER_INODE_ONDISK) {
389                 hammer_init_cursor_hmp(&cursor, &ip->cache[0], ip->hmp);
390                 cursor.key_beg.obj_id = ip->obj_id;
391                 cursor.key_beg.key = 0;
392                 cursor.key_beg.create_tid = 0;
393                 cursor.key_beg.delete_tid = 0;
394                 cursor.key_beg.rec_type = HAMMER_RECTYPE_INODE;
395                 cursor.key_beg.obj_type = 0;
396                 cursor.asof = ip->obj_asof;
397                 cursor.flags |= HAMMER_CURSOR_GET_RECORD | HAMMER_CURSOR_ASOF;
398
399                 error = hammer_btree_lookup(&cursor);
400
401                 if (error == 0) {
402                         error = hammer_ip_delete_record(&cursor, last_tid);
403                         if (error == 0)
404                                 ip->flags |= HAMMER_INODE_DELONDISK;
405                         hammer_cache_node(cursor.node, &ip->cache[0]);
406                 }
407                 hammer_done_cursor(&cursor);
408                 if (error == EDEADLK)
409                         goto retry;
410         }
411
412         /*
413          * Write out a new record if the in-memory inode is not marked
414          * as having been deleted.  Update our inode statistics if this
415          * is the first application of the inode on-disk.
416          *
417          * If the inode has been deleted permanently, HAMMER_INODE_DELONDISK
418          * will remain set and prevent further updates.
419          */
420         if (error == 0 && (ip->flags & HAMMER_INODE_DELETED) == 0) { 
421                 record = hammer_alloc_mem_record(ip);
422                 record->rec.inode = ip->ino_rec;
423                 record->rec.inode.base.base.create_tid = last_tid;
424                 record->rec.inode.base.data_len = sizeof(ip->ino_data);
425                 record->data = (void *)&ip->ino_data;
426                 error = hammer_ip_sync_record(record, &spike);
427                 record->flags |= HAMMER_RECF_DELETED;
428                 hammer_rel_mem_record(record);
429                 if (error == ENOSPC) {
430                         error = hammer_spike(&spike);
431                         if (error == 0)
432                                 goto retry;
433                 }
434                 KKASSERT(spike == NULL);
435                 if (error == 0) {
436                         ip->flags &= ~(HAMMER_INODE_RDIRTY |
437                                        HAMMER_INODE_DDIRTY |
438                                        HAMMER_INODE_DELONDISK |
439                                        HAMMER_INODE_ITIMES);
440                         if ((ip->flags & HAMMER_INODE_ONDISK) == 0) {
441                                 hammer_modify_volume(ip->hmp->rootvol);
442                                 ++ip->hmp->rootvol->ondisk->vol0_stat_inodes;
443                                 ip->flags |= HAMMER_INODE_ONDISK;
444                         }
445
446                         /*
447                          * Unlock the sync TID if it was locked, now that
448                          * we have written it out to disk.
449                          */
450                         ip->flags &= ~HAMMER_INODE_TIDLOCKED;
451                 }
452         }
453         return(error);
454 }
455
456 /*
457  * Update only the itimes fields.  This is done no-historically.  The
458  * record is updated in-place on the disk.
459  */
460 static int
461 hammer_update_itimes(hammer_inode_t ip)
462 {
463         struct hammer_cursor cursor;
464         struct hammer_inode_record *rec;
465         int error;
466
467 retry:
468         error = 0;
469         if ((ip->flags & (HAMMER_INODE_ONDISK|HAMMER_INODE_DELONDISK)) ==
470             HAMMER_INODE_ONDISK) {
471                 hammer_init_cursor_hmp(&cursor, &ip->cache[0], ip->hmp);
472                 cursor.key_beg.obj_id = ip->obj_id;
473                 cursor.key_beg.key = 0;
474                 cursor.key_beg.create_tid = 0;
475                 cursor.key_beg.delete_tid = 0;
476                 cursor.key_beg.rec_type = HAMMER_RECTYPE_INODE;
477                 cursor.key_beg.obj_type = 0;
478                 cursor.asof = ip->obj_asof;
479                 cursor.flags |= HAMMER_CURSOR_GET_RECORD | HAMMER_CURSOR_ASOF;
480
481                 error = hammer_btree_lookup(&cursor);
482                 if (error == 0) {
483                         rec = &cursor.record->inode;
484                         hammer_modify_buffer_nodep(cursor.record_buffer);
485                         rec->ino_atime = ip->ino_rec.ino_atime;
486                         rec->ino_mtime = ip->ino_rec.ino_mtime;
487                         ip->flags &= ~HAMMER_INODE_ITIMES;
488                         /* XXX recalculate crc */
489                         hammer_cache_node(cursor.node, &ip->cache[0]);
490                 }
491                 hammer_done_cursor(&cursor);
492                 if (error == EDEADLK)
493                         goto retry;
494         }
495         return(error);
496 }
497
498 /*
499  * Release a reference on an inode.  If asked to flush the last release
500  * will flush the inode.
501  */
502 void
503 hammer_rel_inode(struct hammer_inode *ip, int flush)
504 {
505         hammer_unref(&ip->lock);
506         if (flush)
507                 ip->flags |= HAMMER_INODE_FLUSH;
508         if (ip->lock.refs == 0) {
509                 if (ip->flags & HAMMER_INODE_FLUSH)
510                         hammer_unload_inode(ip, (void *)MNT_WAIT);
511                 else
512                         hammer_unload_inode(ip, (void *)MNT_NOWAIT);
513         }
514 }
515
516 /*
517  * Unload and destroy the specified inode.
518  *
519  * (typically called via RB_SCAN)
520  */
521 int
522 hammer_unload_inode(struct hammer_inode *ip, void *data)
523 {
524         int error;
525
526         KASSERT(ip->lock.refs == 0,
527                 ("hammer_unload_inode: %d refs\n", ip->lock.refs));
528         KKASSERT(ip->vp == NULL);
529         hammer_ref(&ip->lock);
530
531         error = hammer_sync_inode(ip, (int)data, 1);
532         if (error)
533                 kprintf("hammer_sync_inode failed error %d\n", error);
534         if (ip->lock.refs == 1) {
535                 KKASSERT(RB_EMPTY(&ip->rec_tree));
536                 RB_REMOVE(hammer_ino_rb_tree, &ip->hmp->rb_inos_root, ip);
537
538                 hammer_uncache_node(&ip->cache[0]);
539                 hammer_uncache_node(&ip->cache[1]);
540                 --hammer_count_inodes;
541                 kfree(ip, M_HAMMER);
542         } else {
543                 hammer_unref(&ip->lock);
544         }
545         return(0);
546 }
547
548 /*
549  * A transaction has modified an inode, requiring updates as specified by
550  * the passed flags.
551  *
552  * HAMMER_INODE_RDIRTY: Inode record has been updated
553  * HAMMER_INODE_DDIRTY: Inode data has been updated
554  * HAMMER_INODE_DELETED: Inode record/data must be deleted
555  * HAMMER_INODE_ITIMES: mtime/atime has been updated
556  *
557  * last_tid is the TID to use to generate the correct TID when the inode
558  * is synced to disk.  The first inode record laid out on disk must match
559  * the transaction id of the related directory entry so only update last_tid
560  * if that has already occured.
561  */
562 void
563 hammer_modify_inode(struct hammer_transaction *trans,
564                     struct hammer_inode *ip, int flags)
565 {
566         KKASSERT ((ip->flags & HAMMER_INODE_RO) == 0 ||
567                   (HAMMER_INODE_RDIRTY|HAMMER_INODE_DDIRTY|
568                    HAMMER_INODE_DELETED|HAMMER_INODE_ITIMES) == 0);
569
570         if (flags &
571             (HAMMER_INODE_RDIRTY|HAMMER_INODE_DDIRTY|HAMMER_INODE_DELETED)) {
572                 if (hammer_debug_tid) {
573                         kprintf("hammer_modify_inode: %016llx (%08x)\n", 
574                                 trans->tid, (int)(trans->tid / 1000000000LL));
575                 }
576
577                 /*
578                  * Update the inode sync transaction id unless it's locked
579                  * due to some prior required synchroznization.  Locking the
580                  * tid in the new flags overrides this (used by rename).
581                  */
582                 if ((ip->flags & HAMMER_INODE_TIDLOCKED) == 0)
583                         ip->last_tid = trans->tid;
584                 else if (flags & HAMMER_INODE_TIDLOCKED)
585                         ip->last_tid = trans->tid;
586         }
587         ip->flags |= flags;
588 }
589
590 /*
591  * Sync any dirty buffers and records associated with an inode.  The
592  * inode's last_tid field is used as the transaction id for the sync,
593  * overriding any intermediate TIDs that were used for records.  Note
594  * that the dirty buffer cache buffers do not have any knowledge of
595  * the transaction id they were modified under.
596  *
597  * If we can't sync due to a cluster becoming full the spike structure
598  * will be filled in and ENOSPC returned.  We must return -ENOSPC to
599  * terminate the RB_SCAN.
600  */
601 static int
602 hammer_sync_inode_callback(hammer_record_t rec, void *data)
603 {
604         struct hammer_cursor **spike = data;
605         int error;
606
607         hammer_ref(&rec->lock);
608         error = hammer_ip_sync_record(rec, spike);
609         hammer_rel_mem_record(rec);
610
611         if (error) {
612                 error = -error;
613                 if (error != -ENOSPC) {
614                         kprintf("hammer_sync_inode_callback: sync failed rec "
615                                 "%p, error %d\n", rec, error);
616                 }
617         }
618         return(error);
619 }
620
621 /*
622  * XXX error handling
623  */
624 int
625 hammer_sync_inode(hammer_inode_t ip, int waitfor, int handle_delete)
626 {
627         struct hammer_transaction trans;
628         struct hammer_cursor *spike = NULL;
629         int error;
630
631         if ((ip->flags & HAMMER_INODE_MODMASK) == 0) {
632                 return(0);
633         }
634
635         hammer_lock_ex(&ip->lock);
636
637         /*
638          * Use the transaction id of the last operation to sync.
639          */
640         if (ip->last_tid)
641                 hammer_start_transaction_tid(&trans, ip->hmp, ip->last_tid);
642         else
643                 hammer_start_transaction(&trans, ip->hmp);
644
645         /*
646          * If the inode has been deleted (nlinks == 0), and the OS no longer
647          * has any references to it (handle_delete != 0), clean up in-memory
648          * data.
649          *
650          * NOTE: We do not set the RDIRTY flag when updating the delete_tid,
651          * setting HAMMER_INODE_DELETED takes care of it.
652          *
653          * NOTE: Because we may sync records within this new transaction,
654          * force the inode update later on to use our transaction id or
655          * the delete_tid of the inode may be less then the create_tid of
656          * the inode update.  XXX shouldn't happen but don't take the chance.
657          *
658          * NOTE: The call to hammer_ip_delete_range() cannot return ENOSPC
659          * so we can pass a NULL spike structure, because no partial data
660          * deletion can occur (yet).
661          */
662         if (ip->ino_rec.ino_nlinks == 0 && handle_delete && 
663             (ip->flags & HAMMER_INODE_GONE) == 0) {
664                 ip->flags |= HAMMER_INODE_GONE;
665                 if (ip->vp)
666                         vtruncbuf(ip->vp, 0, HAMMER_BUFSIZE);
667                 error = hammer_ip_delete_range_all(&trans, ip);
668                 KKASSERT(RB_EMPTY(&ip->rec_tree));
669                 ip->ino_rec.base.base.delete_tid = trans.tid;
670                 hammer_modify_inode(&trans, ip, HAMMER_INODE_DELETED);
671                 hammer_modify_volume(ip->hmp->rootvol);
672                 --ip->hmp->rootvol->ondisk->vol0_stat_inodes;
673         }
674
675         /*
676          * Sync the buffer cache.
677          */
678         if (ip->vp != NULL) {
679                 error = vfsync(ip->vp, waitfor, 1, NULL, NULL);
680                 if (RB_ROOT(&ip->vp->v_rbdirty_tree) == NULL)
681                         ip->flags &= ~HAMMER_INODE_BUFS;
682         } else {
683                 error = 0;
684         }
685
686
687         /*
688          * Now sync related records
689          */
690         for (;;) {
691                 error = RB_SCAN(hammer_rec_rb_tree, &ip->rec_tree, NULL,
692                                 hammer_sync_inode_callback, &spike);
693                 KKASSERT(error <= 0);
694                 if (error < 0)
695                         error = -error;
696                 if (error == ENOSPC) {
697                         error = hammer_spike(&spike);
698                         if (error == 0)
699                                 continue;
700                 }
701                 break;
702         }
703         if (RB_EMPTY(&ip->rec_tree))
704                 ip->flags &= ~HAMMER_INODE_XDIRTY;
705
706         /*
707          * Now update the inode's on-disk inode-data and/or on-disk record.
708          */
709         switch(ip->flags & (HAMMER_INODE_DELETED|HAMMER_INODE_ONDISK)) {
710         case HAMMER_INODE_DELETED|HAMMER_INODE_ONDISK:
711                 /*
712                  * If deleted and on-disk, don't set any additional flags.
713                  * the delete flag takes care of things.
714                  */
715                 break;
716         case HAMMER_INODE_DELETED:
717                 /*
718                  * Take care of the case where a deleted inode was never
719                  * flushed to the disk in the first place.
720                  */
721                 ip->flags &= ~(HAMMER_INODE_RDIRTY|HAMMER_INODE_DDIRTY|
722                                HAMMER_INODE_XDIRTY|HAMMER_INODE_ITIMES);
723                 while (RB_ROOT(&ip->rec_tree)) {
724                         hammer_record_t rec = RB_ROOT(&ip->rec_tree);
725                         hammer_ref(&rec->lock);
726                         rec->flags |= HAMMER_RECF_DELETED;
727                         hammer_rel_mem_record(rec);
728                 }
729                 break;
730         case HAMMER_INODE_ONDISK:
731                 /*
732                  * If already on-disk, do not set any additional flags.
733                  */
734                 break;
735         default:
736                 /*
737                  * If not on-disk and not deleted, set both dirty flags
738                  * to force an initial record to be written.
739                  */
740                 ip->flags |= HAMMER_INODE_RDIRTY | HAMMER_INODE_DDIRTY;
741                 break;
742         }
743
744         /*
745          * If RDIRTY or DDIRTY is set, write out a new record.  If the inode
746          * is already on-disk the old record is marked as deleted.
747          *
748          * If DELETED is set hammer_update_inode() will delete the existing
749          * record without writing out a new one.
750          *
751          * If *ONLY* the ITIMES flag is set we can update the record in-place.
752          */
753         if ((ip->flags & (HAMMER_INODE_RDIRTY | HAMMER_INODE_DDIRTY |
754                          HAMMER_INODE_ITIMES | HAMMER_INODE_DELETED)) ==
755             HAMMER_INODE_ITIMES) {
756                 error = hammer_update_itimes(ip);
757         } else
758         if (ip->flags & (HAMMER_INODE_RDIRTY | HAMMER_INODE_DDIRTY |
759                          HAMMER_INODE_ITIMES | HAMMER_INODE_DELETED)) {
760                 error = hammer_update_inode(ip);
761         }
762         hammer_commit_transaction(&trans);
763         hammer_unlock(&ip->lock);
764         return(error);
765 }
766
767 /*
768  * Access the filesystem buffer containing the cluster-relative byte
769  * offset, validate the buffer type, load *bufferp and return a
770  * pointer to the requested data.  The buffer is reference and locked on
771  * return.
772  *
773  * If buf_type is 0 the buffer is assumed to be a pure-data buffer and
774  * no type or crc check is performed.
775  *
776  * If *bufferp is not NULL on entry it is assumed to contain a locked
777  * and referenced buffer which will then be replaced.
778  *
779  * If the caller is holding another unrelated buffer locked it must be
780  * passed in reorderbuf so we can properly order buffer locks.
781  *
782  * XXX add a flag for the buffer type and check the CRC here XXX
783  */
784 void *
785 hammer_bread(hammer_cluster_t cluster, int32_t cloff,
786              u_int64_t buf_type, int *errorp,
787              struct hammer_buffer **bufferp)
788 {
789         hammer_buffer_t buffer;
790         int32_t buf_no;
791         int32_t buf_off;
792
793         /*
794          * Load the correct filesystem buffer, replacing *bufferp.
795          */
796         buf_no = cloff / HAMMER_BUFSIZE;
797         buffer = *bufferp;
798         if (buffer == NULL || buffer->cluster != cluster ||
799             buffer->buf_no != buf_no) {
800                 if (buffer) {
801                         /*hammer_unlock(&buffer->io.lock);*/
802                         hammer_rel_buffer(buffer, 0);
803                 }
804                 buffer = hammer_get_buffer(cluster, buf_no, 0, errorp);
805                 *bufferp = buffer;
806                 if (buffer == NULL)
807                         return(NULL);
808                 /*hammer_lock_ex(&buffer->io.lock);*/
809         }
810
811         /*
812          * Validate the buffer type
813          */
814         buf_off = cloff & HAMMER_BUFMASK;
815         if (buf_type) {
816                 if (buf_type != buffer->ondisk->head.buf_type) {
817                         kprintf("BUFFER HEAD TYPE MISMATCH %llx %llx\n",
818                                 buf_type, buffer->ondisk->head.buf_type);
819                         KKASSERT(0);
820                         *errorp = EIO;
821                         return(NULL);
822                 }
823                 if (buf_off < sizeof(buffer->ondisk->head)) {
824                         kprintf("BUFFER OFFSET TOO LOW %d\n", buf_off);
825                         *errorp = EIO;
826                         KKASSERT(0);
827                         return(NULL);
828                 }
829         }
830
831         /*
832          * Return a pointer to the buffer data.
833          */
834         *errorp = 0;
835         return((char *)buffer->ondisk + buf_off);
836 }
837