2 * Copyright (c) 1995-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 // This file implements a simple write-ahead journaling layer.
24 // In theory any file system can make use of it by calling these
25 // functions when the fs wants to modify meta-data blocks. See
26 // vfs_journal.h for a more detailed description of the api and
29 // Dominic Giampaolo (dbg@apple.com)
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/file_internal.h>
39 #include <sys/buf_internal.h>
40 #include <sys/proc_internal.h>
41 #include <sys/mount_internal.h>
42 #include <sys/namei.h>
43 #include <sys/vnode_internal.h>
44 #include <sys/ioctl.h>
47 #include <sys/malloc.h>
48 #include <kern/thread.h>
50 #include <miscfs/specfs/specdev.h>
52 extern task_t kernel_task
;
64 #include <sys/types.h>
69 #include "vfs_journal.h"
72 // number of bytes to checksum in a block_list_header
73 // NOTE: this should be enough to clear out the header
74 // fields as well as the first entry of binfo[]
75 #define BLHDR_CHECKSUM_SIZE 32
79 static int end_transaction(transaction
*tr
, int force_it
);
80 static void abort_transaction(journal
*jnl
, transaction
*tr
);
81 static void dump_journal(journal
*jnl
);
83 static __inline__
void lock_journal(journal
*jnl
);
84 static __inline__
void unlock_journal(journal
*jnl
);
85 static __inline__
void lock_oldstart(journal
*jnl
);
86 static __inline__
void unlock_oldstart(journal
*jnl
);
92 // 3105942 - Coalesce writes to the same block on journal replay
95 typedef struct bucket
{
101 #define STARTING_BUCKETS 256
103 static int add_block(journal
*jnl
, struct bucket
**buf_ptr
, off_t block_num
, size_t size
, size_t offset
, int *num_buckets_ptr
, int *num_full_ptr
);
104 static int grow_table(struct bucket
**buf_ptr
, int num_buckets
, int new_size
);
105 static int lookup_bucket(struct bucket
**buf_ptr
, off_t block_num
, int num_full
);
106 static int do_overlap(journal
*jnl
, struct bucket
**buf_ptr
, int blk_index
, off_t block_num
, size_t size
, size_t offset
, int *num_buckets_ptr
, int *num_full_ptr
);
107 static int insert_block(journal
*jnl
, struct bucket
**buf_ptr
, int blk_index
, off_t num
, size_t size
, size_t offset
, int *num_buckets_ptr
, int *num_full_ptr
, int overwriting
);
109 #define CHECK_JOURNAL(jnl) \
112 panic("%s:%d: null journal ptr?\n", __FILE__, __LINE__);\
114 if (jnl->jdev == NULL) { \
115 panic("%s:%d: jdev is null!\n", __FILE__, __LINE__);\
117 if (jnl->fsdev == NULL) { \
118 panic("%s:%d: fsdev is null!\n", __FILE__, __LINE__);\
120 if (jnl->jhdr->magic != JOURNAL_HEADER_MAGIC) {\
121 panic("%s:%d: jhdr magic corrupted (0x%x != 0x%x)\n",\
122 __FILE__, __LINE__, jnl->jhdr->magic, JOURNAL_HEADER_MAGIC);\
124 if ( jnl->jhdr->start <= 0 \
125 || jnl->jhdr->start > jnl->jhdr->size\
126 || jnl->jhdr->start > 1024*1024*1024) {\
127 panic("%s:%d: jhdr start looks bad (0x%llx max size 0x%llx)\n", \
128 __FILE__, __LINE__, jnl->jhdr->start, jnl->jhdr->size);\
130 if ( jnl->jhdr->end <= 0 \
131 || jnl->jhdr->end > jnl->jhdr->size\
132 || jnl->jhdr->end > 1024*1024*1024) {\
133 panic("%s:%d: jhdr end looks bad (0x%llx max size 0x%llx)\n", \
134 __FILE__, __LINE__, jnl->jhdr->end, jnl->jhdr->size);\
136 if (jnl->jhdr->size > 1024*1024*1024) {\
137 panic("%s:%d: jhdr size looks bad (0x%llx)\n",\
138 __FILE__, __LINE__, jnl->jhdr->size);\
142 #define CHECK_TRANSACTION(tr) \
145 panic("%s:%d: null transaction ptr?\n", __FILE__, __LINE__);\
147 if (tr->jnl == NULL) {\
148 panic("%s:%d: null tr->jnl ptr?\n", __FILE__, __LINE__);\
150 if (tr->blhdr != (block_list_header *)tr->tbuffer) {\
151 panic("%s:%d: blhdr (0x%x) != tbuffer (0x%x)\n", __FILE__, __LINE__, tr->blhdr, tr->tbuffer);\
153 if (tr->total_bytes < 0) {\
154 panic("%s:%d: tr total_bytes looks bad: %d\n", __FILE__, __LINE__, tr->total_bytes);\
156 if (tr->journal_start < 0 || tr->journal_start > 1024*1024*1024) {\
157 panic("%s:%d: tr journal start looks bad: 0x%llx\n", __FILE__, __LINE__, tr->journal_start);\
159 if (tr->journal_end < 0 || tr->journal_end > 1024*1024*1024) {\
160 panic("%s:%d: tr journal end looks bad: 0x%llx\n", __FILE__, __LINE__, tr->journal_end);\
162 if (tr->blhdr && (tr->blhdr->max_blocks <= 0 || tr->blhdr->max_blocks > (tr->jnl->jhdr->size/tr->jnl->jhdr->jhdr_size))) {\
163 panic("%s:%d: tr blhdr max_blocks looks bad: %d\n", __FILE__, __LINE__, tr->blhdr->max_blocks);\
170 // this isn't a great checksum routine but it will do for now.
171 // we use it to checksum the journal header and the block list
172 // headers that are at the start of each transaction.
175 calc_checksum(char *ptr
, int len
)
179 // this is a lame checksum but for now it'll do
180 for(i
=0; i
< len
; i
++, ptr
++) {
181 cksum
= (cksum
<< 8) ^ (cksum
+ *(unsigned char *)ptr
);
190 lck_grp_attr_t
* jnl_group_attr
;
191 lck_attr_t
* jnl_lock_attr
;
192 lck_grp_t
* jnl_mutex_group
;
197 jnl_lock_attr
= lck_attr_alloc_init();
198 jnl_group_attr
= lck_grp_attr_alloc_init();
199 jnl_mutex_group
= lck_grp_alloc_init("jnl-mutex", jnl_group_attr
);
202 static __inline__
void
203 lock_journal(journal
*jnl
)
205 lck_mtx_lock(&jnl
->jlock
);
208 static __inline__
void
209 unlock_journal(journal
*jnl
)
211 lck_mtx_unlock(&jnl
->jlock
);
214 static __inline__
void
215 lock_oldstart(journal
*jnl
)
217 lck_mtx_lock(&jnl
->old_start_lock
);
220 static __inline__
void
221 unlock_oldstart(journal
*jnl
)
223 lck_mtx_unlock(&jnl
->old_start_lock
);
228 #define JNL_WRITE 0x0001
229 #define JNL_READ 0x0002
230 #define JNL_HEADER 0x8000
233 // This function sets up a fake buf and passes it directly to the
234 // journal device strategy routine (so that it won't get cached in
237 // It also handles range checking the i/o so that we don't write
238 // outside the journal boundaries and it will wrap the i/o back
239 // to the beginning if necessary (skipping over the journal header)
242 do_journal_io(journal
*jnl
, off_t
*offset
, void *data
, size_t len
, int direction
)
244 int err
, io_sz
=0, curlen
=len
;
246 int max_iosize
= 128 * 1024;
247 struct vfsioattr ioattr
;
249 if (*offset
< 0 || *offset
> jnl
->jhdr
->size
) {
250 panic("jnl: do_jnl_io: bad offset 0x%llx (max 0x%llx)\n", *offset
, jnl
->jhdr
->size
);
252 vfs_ioattr(vnode_mount(jnl
->jdev
), &ioattr
);
254 if (direction
& JNL_WRITE
)
255 max_iosize
= ioattr
.io_maxwritecnt
;
256 else if (direction
& JNL_READ
)
257 max_iosize
= ioattr
.io_maxreadcnt
;
260 bp
= alloc_io_buf(jnl
->jdev
, 1);
262 if (*offset
+ (off_t
)curlen
> jnl
->jhdr
->size
&& *offset
!= 0 && jnl
->jhdr
->size
!= 0) {
263 if (*offset
== jnl
->jhdr
->size
) {
264 *offset
= jnl
->jhdr
->jhdr_size
;
266 curlen
= (off_t
)jnl
->jhdr
->size
- *offset
;
270 if (curlen
> max_iosize
) {
275 panic("jnl: do_jnl_io: curlen == %d, offset 0x%llx len %d\n", curlen
, *offset
, len
);
278 if (*offset
== 0 && (direction
& JNL_HEADER
) == 0) {
279 panic("jnl: request for i/o to jnl-header without JNL_HEADER flag set! (len %d, data %p)\n", curlen
, data
);
282 if (direction
& JNL_READ
)
283 buf_setflags(bp
, B_READ
);
286 * don't have to set any flags
288 vnode_startwrite(jnl
->jdev
);
290 buf_setsize(bp
, curlen
);
291 buf_setcount(bp
, curlen
);
292 buf_setdataptr(bp
, (uintptr_t)data
);
293 buf_setblkno(bp
, (daddr64_t
) ((jnl
->jdev_offset
+ *offset
) / (off_t
)jnl
->jhdr
->jhdr_size
));
294 buf_setlblkno(bp
, (daddr64_t
) ((jnl
->jdev_offset
+ *offset
) / (off_t
)jnl
->jhdr
->jhdr_size
));
296 err
= VNOP_STRATEGY(bp
);
298 err
= (int)buf_biowait(bp
);
303 printf("jnl: do_jnl_io: strategy err 0x%x\n", err
);
310 // handle wrap-around
311 data
= (char *)data
+ curlen
;
312 curlen
= len
- io_sz
;
313 if (*offset
>= jnl
->jhdr
->size
) {
314 *offset
= jnl
->jhdr
->jhdr_size
;
323 read_journal_data(journal
*jnl
, off_t
*offset
, void *data
, size_t len
)
325 return do_journal_io(jnl
, offset
, data
, len
, JNL_READ
);
329 write_journal_data(journal
*jnl
, off_t
*offset
, void *data
, size_t len
)
331 return do_journal_io(jnl
, offset
, data
, len
, JNL_WRITE
);
336 read_journal_header(journal
*jnl
, void *data
, size_t len
)
338 off_t hdr_offset
= 0;
340 return do_journal_io(jnl
, &hdr_offset
, data
, len
, JNL_READ
|JNL_HEADER
);
344 write_journal_header(journal
*jnl
)
346 static int num_err_prints
= 0;
348 off_t jhdr_offset
= 0;
349 struct vfs_context context
;
351 context
.vc_proc
= current_proc();
352 context
.vc_ucred
= NOCRED
;
354 // XXXdbg note: this ioctl doesn't seem to do anything on firewire disks.
356 ret
= VNOP_IOCTL(jnl
->jdev
, DKIOCSYNCHRONIZECACHE
, NULL
, FWRITE
, &context
);
359 // Only print this error if it's a different error than the
360 // previous one, or if it's the first time for this device
361 // or if the total number of printfs is less than 25. We
362 // allow for up to 25 printfs to insure that some make it
363 // into the on-disk syslog. Otherwise if we only printed
364 // one, it's possible it would never make it to the syslog
365 // for the root volume and that makes debugging hard.
367 if ( ret
!= jnl
->last_flush_err
368 || (jnl
->flags
& JOURNAL_FLUSHCACHE_ERR
) == 0
369 || num_err_prints
++ < 25) {
371 printf("jnl: flushing fs disk buffer returned 0x%x\n", ret
);
373 jnl
->flags
|= JOURNAL_FLUSHCACHE_ERR
;
374 jnl
->last_flush_err
= ret
;
379 jnl
->jhdr
->checksum
= 0;
380 jnl
->jhdr
->checksum
= calc_checksum((char *)jnl
->jhdr
, sizeof(struct journal_header
));
381 if (do_journal_io(jnl
, &jhdr_offset
, jnl
->header_buf
, jnl
->jhdr
->jhdr_size
, JNL_WRITE
|JNL_HEADER
) != jnl
->jhdr
->jhdr_size
) {
382 printf("jnl: write_journal_header: error writing the journal header!\n");
383 jnl
->flags
|= JOURNAL_INVALID
;
387 // Have to flush after writing the journal header so that
388 // a future transaction doesn't sneak out to disk before
389 // the header does and thus overwrite data that the old
390 // journal header refers to. Saw this exact case happen
391 // on an IDE bus analyzer with Larry Barras so while it
392 // may seem obscure, it's not.
394 VNOP_IOCTL(jnl
->jdev
, DKIOCSYNCHRONIZECACHE
, NULL
, FWRITE
, &context
);
402 // this is a work function used to free up transactions that
403 // completed. they can't be free'd from buffer_flushed_callback
404 // because it is called from deep with the disk driver stack
405 // and thus can't do something that would potentially cause
406 // paging. it gets called by each of the journal api entry
407 // points so stuff shouldn't hang around for too long.
410 free_old_stuff(journal
*jnl
)
412 transaction
*tr
, *next
;
416 jnl
->tr_freeme
= NULL
;
417 unlock_oldstart(jnl
);
421 FREE_ZONE(tr
, sizeof(transaction
), M_JNL_TR
);
429 // This is our callback that lets us know when a buffer has been
430 // flushed to disk. It's called from deep within the driver stack
431 // and thus is quite limited in what it can do. Notably, it can
432 // not initiate any new i/o's or allocate/free memory.
435 buffer_flushed_callback(struct buf
*bp
, void *arg
)
439 transaction
*ctr
, *prev
=NULL
, *next
;
443 //printf("jnl: buf flush: bp @ 0x%x l/blkno %qd/%qd vp 0x%x tr @ 0x%x\n",
444 // bp, buf_lblkno(bp), buf_blkno(bp), buf_vnode(bp), arg);
446 // snarf out the bits we want
447 bufsize
= buf_size(bp
);
448 tr
= (transaction
*)arg
;
450 // then we've already seen it
455 CHECK_TRANSACTION(tr
);
458 if (jnl
->flags
& JOURNAL_INVALID
) {
464 // update the number of blocks that have been flushed.
465 // this buf may represent more than one block so take
466 // that into account.
467 OSAddAtomic(bufsize
, &tr
->num_flushed
);
470 // if this transaction isn't done yet, just return as
471 // there is nothing to do.
472 if ((tr
->num_flushed
+ tr
->num_killed
) < tr
->total_bytes
) {
476 // this will single thread checking the transaction
479 if (tr
->total_bytes
== 0xfbadc0de) {
480 // then someone beat us to it...
481 unlock_oldstart(jnl
);
485 // mark this so that we're the owner of dealing with the
486 // cleanup for this transaction
487 tr
->total_bytes
= 0xfbadc0de;
489 //printf("jnl: tr 0x%x (0x%llx 0x%llx) in jnl 0x%x completed.\n",
490 // tr, tr->journal_start, tr->journal_end, jnl);
492 // find this entry in the old_start[] index and mark it completed
493 for(i
=0; i
< sizeof(jnl
->old_start
)/sizeof(jnl
->old_start
[0]); i
++) {
495 if ((jnl
->old_start
[i
] & ~(0x8000000000000000LL
)) == tr
->journal_start
) {
496 jnl
->old_start
[i
] &= ~(0x8000000000000000LL
);
500 if (i
>= sizeof(jnl
->old_start
)/sizeof(jnl
->old_start
[0])) {
501 panic("jnl: buffer_flushed: did not find tr w/start @ %lld (tr 0x%x, jnl 0x%x)\n",
502 tr
->journal_start
, tr
, jnl
);
504 unlock_oldstart(jnl
);
507 // if we are here then we need to update the journal header
508 // to reflect that this transaction is complete
509 if (tr
->journal_start
== jnl
->active_start
) {
510 jnl
->active_start
= tr
->journal_end
;
511 tr
->journal_start
= tr
->journal_end
= (off_t
)0;
514 // go through the completed_trs list and try to coalesce
515 // entries, restarting back at the beginning if we have to.
516 for(ctr
=jnl
->completed_trs
; ctr
; prev
=ctr
, ctr
=next
) {
517 if (ctr
->journal_start
== jnl
->active_start
) {
518 jnl
->active_start
= ctr
->journal_end
;
520 prev
->next
= ctr
->next
;
522 if (ctr
== jnl
->completed_trs
) {
523 jnl
->completed_trs
= ctr
->next
;
527 next
= jnl
->completed_trs
; // this starts us over again
528 ctr
->next
= jnl
->tr_freeme
;
529 jnl
->tr_freeme
= ctr
;
531 unlock_oldstart(jnl
);
532 } else if (tr
->journal_end
== ctr
->journal_start
) {
533 ctr
->journal_start
= tr
->journal_start
;
534 next
= jnl
->completed_trs
; // this starts us over again
536 tr
->journal_start
= tr
->journal_end
= (off_t
)0;
537 } else if (tr
->journal_start
== ctr
->journal_end
) {
538 ctr
->journal_end
= tr
->journal_end
;
540 tr
->journal_start
= tr
->journal_end
= (off_t
)0;
546 // if this is true then we didn't merge with anyone
547 // so link ourselves in at the head of the completed
549 if (tr
->journal_start
!= 0) {
550 // put this entry into the correct sorted place
551 // in the list instead of just at the head.
555 for(ctr
=jnl
->completed_trs
; ctr
&& tr
->journal_start
> ctr
->journal_start
; prev
=ctr
, ctr
=ctr
->next
) {
559 if (ctr
== NULL
&& prev
== NULL
) {
560 jnl
->completed_trs
= tr
;
562 } else if (ctr
== jnl
->completed_trs
) {
563 tr
->next
= jnl
->completed_trs
;
564 jnl
->completed_trs
= tr
;
566 tr
->next
= prev
->next
;
570 // if we're here this tr got merged with someone else so
571 // put it on the list to be free'd
573 tr
->next
= jnl
->tr_freeme
;
575 unlock_oldstart(jnl
);
580 #include <libkern/OSByteOrder.h>
582 #define SWAP16(x) OSSwapInt16(x)
583 #define SWAP32(x) OSSwapInt32(x)
584 #define SWAP64(x) OSSwapInt64(x)
588 swap_journal_header(journal
*jnl
)
590 jnl
->jhdr
->magic
= SWAP32(jnl
->jhdr
->magic
);
591 jnl
->jhdr
->endian
= SWAP32(jnl
->jhdr
->endian
);
592 jnl
->jhdr
->start
= SWAP64(jnl
->jhdr
->start
);
593 jnl
->jhdr
->end
= SWAP64(jnl
->jhdr
->end
);
594 jnl
->jhdr
->size
= SWAP64(jnl
->jhdr
->size
);
595 jnl
->jhdr
->blhdr_size
= SWAP32(jnl
->jhdr
->blhdr_size
);
596 jnl
->jhdr
->checksum
= SWAP32(jnl
->jhdr
->checksum
);
597 jnl
->jhdr
->jhdr_size
= SWAP32(jnl
->jhdr
->jhdr_size
);
601 swap_block_list_header(journal
*jnl
, block_list_header
*blhdr
)
605 blhdr
->max_blocks
= SWAP16(blhdr
->max_blocks
);
606 blhdr
->num_blocks
= SWAP16(blhdr
->num_blocks
);
607 blhdr
->bytes_used
= SWAP32(blhdr
->bytes_used
);
608 blhdr
->checksum
= SWAP32(blhdr
->checksum
);
609 blhdr
->pad
= SWAP32(blhdr
->pad
);
611 if (blhdr
->num_blocks
* sizeof(blhdr
->binfo
[0]) > jnl
->jhdr
->blhdr_size
) {
612 printf("jnl: blhdr num blocks looks suspicious (%d). not swapping.\n", blhdr
->num_blocks
);
616 for(i
=0; i
< blhdr
->num_blocks
; i
++) {
617 blhdr
->binfo
[i
].bnum
= SWAP64(blhdr
->binfo
[i
].bnum
);
618 blhdr
->binfo
[i
].bsize
= SWAP32(blhdr
->binfo
[i
].bsize
);
619 blhdr
->binfo
[i
].bp
= (void *)SWAP32((int)blhdr
->binfo
[i
].bp
);
625 update_fs_block(journal
*jnl
, void *block_ptr
, off_t fs_block
, size_t bsize
)
628 struct buf
*oblock_bp
=NULL
;
630 // first read the block we want.
631 ret
= buf_meta_bread(jnl
->fsdev
, (daddr64_t
)fs_block
, bsize
, NOCRED
, &oblock_bp
);
633 printf("jnl: update_fs_block: error reading fs block # %lld! (ret %d)\n", fs_block
, ret
);
636 buf_brelse(oblock_bp
);
640 // let's try to be aggressive here and just re-write the block
641 oblock_bp
= buf_getblk(jnl
->fsdev
, (daddr64_t
)fs_block
, bsize
, 0, 0, BLK_META
);
642 if (oblock_bp
== NULL
) {
643 printf("jnl: update_fs_block: buf_getblk() for %lld failed! failing update.\n", fs_block
);
648 // make sure it's the correct size.
649 if (buf_size(oblock_bp
) != bsize
) {
650 buf_brelse(oblock_bp
);
654 // copy the journal data over top of it
655 memcpy((void *)buf_dataptr(oblock_bp
), block_ptr
, bsize
);
657 if ((ret
= VNOP_BWRITE(oblock_bp
)) != 0) {
658 printf("jnl: update_fs_block: failed to update block %lld (ret %d)\n", fs_block
,ret
);
662 // and now invalidate it so that if someone else wants to read
663 // it in a different size they'll be able to do it.
664 ret
= buf_meta_bread(jnl
->fsdev
, (daddr64_t
)fs_block
, bsize
, NOCRED
, &oblock_bp
);
666 buf_markinvalid(oblock_bp
);
667 buf_brelse(oblock_bp
);
674 grow_table(struct bucket
**buf_ptr
, int num_buckets
, int new_size
)
676 struct bucket
*newBuf
;
677 int current_size
= num_buckets
, i
;
679 // return if newsize is less than the current size
680 if (new_size
< num_buckets
) {
684 if ((MALLOC(newBuf
, struct bucket
*, new_size
*sizeof(struct bucket
), M_TEMP
, M_WAITOK
)) == NULL
) {
685 printf("jnl: grow_table: no memory to expand coalesce buffer!\n");
689 // printf("jnl: lookup_bucket: expanded co_buf to %d elems\n", new_size);
691 // copy existing elements
692 bcopy(*buf_ptr
, newBuf
, num_buckets
*sizeof(struct bucket
));
694 // initialize the new ones
695 for(i
=num_buckets
; i
< new_size
; i
++) {
696 newBuf
[i
].block_num
= (off_t
)-1;
699 // free the old container
700 FREE(*buf_ptr
, M_TEMP
);
709 lookup_bucket(struct bucket
**buf_ptr
, off_t block_num
, int num_full
)
711 int lo
, hi
, index
, matches
, i
;
714 return 0; // table is empty, so insert at index=0
721 // perform binary search for block_num
723 int mid
= (hi
- lo
)/2 + lo
;
724 off_t this_num
= (*buf_ptr
)[mid
].block_num
;
726 if (block_num
== this_num
) {
731 if (block_num
< this_num
) {
736 if (block_num
> this_num
) {
742 // check if lo and hi converged on the match
743 if (block_num
== (*buf_ptr
)[hi
].block_num
) {
747 // if no existing entry found, find index for new one
749 index
= (block_num
< (*buf_ptr
)[hi
].block_num
) ? hi
: hi
+ 1;
751 // make sure that we return the right-most index in the case of multiple matches
754 while(i
< num_full
&& block_num
== (*buf_ptr
)[i
].block_num
) {
766 insert_block(journal
*jnl
, struct bucket
**buf_ptr
, int blk_index
, off_t num
, size_t size
, size_t offset
, int *num_buckets_ptr
, int *num_full_ptr
, int overwriting
)
769 // grow the table if we're out of space
770 if (*num_full_ptr
>= *num_buckets_ptr
) {
771 int new_size
= *num_buckets_ptr
* 2;
772 int grow_size
= grow_table(buf_ptr
, *num_buckets_ptr
, new_size
);
774 if (grow_size
< new_size
) {
775 printf("jnl: add_block: grow_table returned an error!\n");
779 *num_buckets_ptr
= grow_size
; //update num_buckets to reflect the new size
782 // if we're not inserting at the end, we need to bcopy
783 if (blk_index
!= *num_full_ptr
) {
784 bcopy( (*buf_ptr
)+(blk_index
), (*buf_ptr
)+(blk_index
+1), (*num_full_ptr
-blk_index
)*sizeof(struct bucket
) );
787 (*num_full_ptr
)++; // increment only if we're not overwriting
790 // sanity check the values we're about to add
791 if (offset
>= jnl
->jhdr
->size
) {
792 offset
= jnl
->jhdr
->jhdr_size
+ (offset
- jnl
->jhdr
->size
);
795 panic("jnl: insert_block: bad size in insert_block (%d)\n", size
);
798 (*buf_ptr
)[blk_index
].block_num
= num
;
799 (*buf_ptr
)[blk_index
].block_size
= size
;
800 (*buf_ptr
)[blk_index
].jnl_offset
= offset
;
806 do_overlap(journal
*jnl
, struct bucket
**buf_ptr
, int blk_index
, off_t block_num
, size_t size
, size_t offset
, int *num_buckets_ptr
, int *num_full_ptr
)
808 int num_to_remove
, index
, i
, overwrite
, err
;
809 size_t jhdr_size
= jnl
->jhdr
->jhdr_size
, new_offset
;
810 off_t overlap
, block_start
, block_end
;
812 block_start
= block_num
*jhdr_size
;
813 block_end
= block_start
+ size
;
814 overwrite
= (block_num
== (*buf_ptr
)[blk_index
].block_num
&& size
>= (*buf_ptr
)[blk_index
].block_size
);
816 // first, eliminate any overlap with the previous entry
817 if (blk_index
!= 0 && !overwrite
) {
818 off_t prev_block_start
= (*buf_ptr
)[blk_index
-1].block_num
*jhdr_size
;
819 off_t prev_block_end
= prev_block_start
+ (*buf_ptr
)[blk_index
-1].block_size
;
820 overlap
= prev_block_end
- block_start
;
822 if (overlap
% jhdr_size
!= 0) {
823 panic("jnl: do_overlap: overlap with previous entry not a multiple of %d\n", jhdr_size
);
826 // if the previous entry completely overlaps this one, we need to break it into two pieces.
827 if (prev_block_end
> block_end
) {
828 off_t new_num
= block_end
/ jhdr_size
;
829 size_t new_size
= prev_block_end
- block_end
;
831 new_offset
= (*buf_ptr
)[blk_index
-1].jnl_offset
+ (block_end
- prev_block_start
);
833 err
= insert_block(jnl
, buf_ptr
, blk_index
, new_num
, new_size
, new_offset
, num_buckets_ptr
, num_full_ptr
, 0);
835 panic("jnl: do_overlap: error inserting during pre-overlap\n");
839 // Regardless, we need to truncate the previous entry to the beginning of the overlap
840 (*buf_ptr
)[blk_index
-1].block_size
= block_start
- prev_block_start
;
844 // then, bail out fast if there's no overlap with the entries that follow
845 if (!overwrite
&& block_end
<= (*buf_ptr
)[blk_index
].block_num
*jhdr_size
) {
846 return 0; // no overlap, no overwrite
847 } else if (overwrite
&& (blk_index
+ 1 >= *num_full_ptr
|| block_end
<= (*buf_ptr
)[blk_index
+1].block_num
*jhdr_size
)) {
848 return 1; // simple overwrite
851 // Otherwise, find all cases of total and partial overlap. We use the special
852 // block_num of -2 to designate entries that are completely overlapped and must
853 // be eliminated. The block_num, size, and jnl_offset of partially overlapped
854 // entries must be adjusted to keep the array consistent.
857 while(index
< *num_full_ptr
&& block_end
> (*buf_ptr
)[index
].block_num
*jhdr_size
) {
858 if (block_end
>= ((*buf_ptr
)[index
].block_num
*jhdr_size
+ (*buf_ptr
)[index
].block_size
)) {
859 (*buf_ptr
)[index
].block_num
= -2; // mark this for deletion
862 overlap
= block_end
- (*buf_ptr
)[index
].block_num
*jhdr_size
;
864 if (overlap
% jhdr_size
!= 0) {
865 panic("jnl: do_overlap: overlap of %lld is not multiple of %d\n", overlap
, jhdr_size
);
868 // if we partially overlap this entry, adjust its block number, jnl offset, and size
869 (*buf_ptr
)[index
].block_num
+= (overlap
/ jhdr_size
); // make sure overlap is multiple of jhdr_size, or round up
871 new_offset
= (*buf_ptr
)[index
].jnl_offset
+ overlap
; // check for wrap-around
872 if (new_offset
>= jnl
->jhdr
->size
) {
873 new_offset
= jhdr_size
+ (new_offset
- jnl
->jhdr
->size
);
875 (*buf_ptr
)[index
].jnl_offset
= new_offset
;
877 (*buf_ptr
)[index
].block_size
-= overlap
; // sanity check for negative value
878 if ((*buf_ptr
)[index
].block_size
<= 0) {
879 panic("jnl: do_overlap: after overlap, new block size is invalid (%d)\n", (*buf_ptr
)[index
].block_size
);
880 // return -1; // if above panic is removed, return -1 for error
889 // bcopy over any completely overlapped entries, starting at the right (where the above loop broke out)
890 index
--; // start with the last index used within the above loop
891 while(index
>= blk_index
) {
892 if ((*buf_ptr
)[index
].block_num
== -2) {
893 if (index
== *num_full_ptr
-1) {
894 (*buf_ptr
)[index
].block_num
= -1; // it's the last item in the table... just mark as free
896 bcopy( (*buf_ptr
)+(index
+1), (*buf_ptr
)+(index
), (*num_full_ptr
- (index
+ 1)) * sizeof(struct bucket
) );
903 // eliminate any stale entries at the end of the table
904 for(i
=*num_full_ptr
; i
< (*num_full_ptr
+ num_to_remove
); i
++) {
905 (*buf_ptr
)[i
].block_num
= -1;
908 return 0; // if we got this far, we need to insert the entry into the table (rather than overwrite)
911 // PR-3105942: Coalesce writes to the same block in journal replay
912 // We coalesce writes by maintaining a dynamic sorted array of physical disk blocks
913 // to be replayed and the corresponding location in the journal which contains
914 // the most recent data for those blocks. The array is "played" once the all the
915 // blocks in the journal have been coalesced. The code for the case of conflicting/
916 // overlapping writes to a single block is the most dense. Because coalescing can
917 // disrupt the existing time-ordering of blocks in the journal playback, care
918 // is taken to catch any overlaps and keep the array consistent.
920 add_block(journal
*jnl
, struct bucket
**buf_ptr
, off_t block_num
, size_t size
, size_t offset
, int *num_buckets_ptr
, int *num_full_ptr
)
922 int blk_index
, overwriting
;
924 // on return from lookup_bucket(), blk_index is the index into the table where block_num should be
925 // inserted (or the index of the elem to overwrite).
926 blk_index
= lookup_bucket( buf_ptr
, block_num
, *num_full_ptr
);
928 // check if the index is within bounds (if we're adding this block to the end of
929 // the table, blk_index will be equal to num_full)
930 if (blk_index
< 0 || blk_index
> *num_full_ptr
) {
931 //printf("jnl: add_block: trouble adding block to co_buf\n");
933 } // else printf("jnl: add_block: adding block 0x%llx at i=%d\n", block_num, blk_index);
935 // Determine whether we're overwriting an existing entry by checking for overlap
936 overwriting
= do_overlap(jnl
, buf_ptr
, blk_index
, block_num
, size
, offset
, num_buckets_ptr
, num_full_ptr
);
937 if (overwriting
< 0) {
938 return -1; // if we got an error, pass it along
941 // returns the index, or -1 on error
942 blk_index
= insert_block(jnl
, buf_ptr
, blk_index
, block_num
, size
, offset
, num_buckets_ptr
, num_full_ptr
, overwriting
);
948 replay_journal(journal
*jnl
)
950 int i
, ret
, orig_checksum
, checksum
, max_bsize
;
951 block_list_header
*blhdr
;
953 char *buff
, *block_ptr
=NULL
;
954 struct bucket
*co_buf
;
955 int num_buckets
= STARTING_BUCKETS
, num_full
;
957 // wrap the start ptr if it points to the very end of the journal
958 if (jnl
->jhdr
->start
== jnl
->jhdr
->size
) {
959 jnl
->jhdr
->start
= jnl
->jhdr
->jhdr_size
;
961 if (jnl
->jhdr
->end
== jnl
->jhdr
->size
) {
962 jnl
->jhdr
->end
= jnl
->jhdr
->jhdr_size
;
965 if (jnl
->jhdr
->start
== jnl
->jhdr
->end
) {
969 // allocate memory for the header_block. we'll read each blhdr into this
970 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&buff
, jnl
->jhdr
->blhdr_size
)) {
971 printf("jnl: replay_journal: no memory for block buffer! (%d bytes)\n",
972 jnl
->jhdr
->blhdr_size
);
976 // allocate memory for the coalesce buffer
977 if ((MALLOC(co_buf
, struct bucket
*, num_buckets
*sizeof(struct bucket
), M_TEMP
, M_WAITOK
)) == NULL
) {
978 printf("jnl: replay_journal: no memory for coalesce buffer!\n");
982 // initialize entries
983 for(i
=0; i
< num_buckets
; i
++) {
984 co_buf
[i
].block_num
= -1;
986 num_full
= 0; // empty at first
989 printf("jnl: replay_journal: from: %lld to: %lld (joffset 0x%llx)\n",
990 jnl
->jhdr
->start
, jnl
->jhdr
->end
, jnl
->jdev_offset
);
992 while(jnl
->jhdr
->start
!= jnl
->jhdr
->end
) {
993 offset
= jnl
->jhdr
->start
;
994 ret
= read_journal_data(jnl
, &offset
, buff
, jnl
->jhdr
->blhdr_size
);
995 if (ret
!= jnl
->jhdr
->blhdr_size
) {
996 printf("jnl: replay_journal: Could not read block list header block @ 0x%llx!\n", offset
);
1000 blhdr
= (block_list_header
*)buff
;
1002 orig_checksum
= blhdr
->checksum
;
1003 blhdr
->checksum
= 0;
1004 if (jnl
->flags
& JOURNAL_NEED_SWAP
) {
1005 // calculate the checksum based on the unswapped data
1006 // because it is done byte-at-a-time.
1007 orig_checksum
= SWAP32(orig_checksum
);
1008 checksum
= calc_checksum((char *)blhdr
, BLHDR_CHECKSUM_SIZE
);
1009 swap_block_list_header(jnl
, blhdr
);
1011 checksum
= calc_checksum((char *)blhdr
, BLHDR_CHECKSUM_SIZE
);
1013 if (checksum
!= orig_checksum
) {
1014 printf("jnl: replay_journal: bad block list header @ 0x%llx (checksum 0x%x != 0x%x)\n",
1015 offset
, orig_checksum
, checksum
);
1018 if ( blhdr
->max_blocks
<= 0 || blhdr
->max_blocks
> 2048
1019 || blhdr
->num_blocks
<= 0 || blhdr
->num_blocks
> blhdr
->max_blocks
) {
1020 printf("jnl: replay_journal: bad looking journal entry: max: %d num: %d\n",
1021 blhdr
->max_blocks
, blhdr
->num_blocks
);
1025 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
1026 if (blhdr
->binfo
[i
].bnum
< 0 && blhdr
->binfo
[i
].bnum
!= (off_t
)-1) {
1027 printf("jnl: replay_journal: bogus block number 0x%llx\n", blhdr
->binfo
[i
].bnum
);
1032 //printf("jnl: replay_journal: adding %d blocks in journal entry @ 0x%llx to co_buf\n",
1033 // blhdr->num_blocks-1, jnl->jhdr->start);
1034 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
1038 size
= blhdr
->binfo
[i
].bsize
;
1039 number
= blhdr
->binfo
[i
].bnum
;
1041 // don't add "killed" blocks
1042 if (number
== (off_t
)-1) {
1043 //printf("jnl: replay_journal: skipping killed fs block (index %d)\n", i);
1045 // add this bucket to co_buf, coalescing where possible
1046 // printf("jnl: replay_journal: adding block 0x%llx\n", number);
1047 ret_val
= add_block(jnl
, &co_buf
, number
, size
, (size_t) offset
, &num_buckets
, &num_full
);
1049 if (ret_val
== -1) {
1050 printf("jnl: replay_journal: trouble adding block to co_buf\n");
1052 } // else printf("jnl: replay_journal: added block 0x%llx at i=%d\n", number);
1058 // check if the last block added puts us off the end of the jnl.
1059 // if so, we need to wrap to the beginning and take any remainder
1062 if (offset
>= jnl
->jhdr
->size
) {
1063 offset
= jnl
->jhdr
->jhdr_size
+ (offset
- jnl
->jhdr
->size
);
1068 jnl
->jhdr
->start
+= blhdr
->bytes_used
;
1069 if (jnl
->jhdr
->start
>= jnl
->jhdr
->size
) {
1070 // wrap around and skip the journal header block
1071 jnl
->jhdr
->start
= (jnl
->jhdr
->start
% jnl
->jhdr
->size
) + jnl
->jhdr
->jhdr_size
;
1076 //printf("jnl: replay_journal: replaying %d blocks\n", num_full);
1079 * make sure it's at least one page in size, so
1080 * start max_bsize at PAGE_SIZE
1082 for (i
= 0, max_bsize
= PAGE_SIZE
; i
< num_full
; i
++) {
1084 if (co_buf
[i
].block_num
== (off_t
)-1)
1087 if (co_buf
[i
].block_size
> max_bsize
)
1088 max_bsize
= co_buf
[i
].block_size
;
1091 * round max_bsize up to the nearest PAGE_SIZE multiple
1093 if (max_bsize
& (PAGE_SIZE
- 1)) {
1094 max_bsize
= (max_bsize
+ PAGE_SIZE
) & ~(PAGE_SIZE
- 1);
1097 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&block_ptr
, max_bsize
)) {
1101 // Replay the coalesced entries in the co-buf
1102 for(i
=0; i
< num_full
; i
++) {
1103 size_t size
= co_buf
[i
].block_size
;
1104 off_t jnl_offset
= (off_t
) co_buf
[i
].jnl_offset
;
1105 off_t number
= co_buf
[i
].block_num
;
1108 // printf("replaying co_buf[%d]: block 0x%llx, size 0x%x, jnl_offset 0x%llx\n", i, co_buf[i].block_num,
1109 // co_buf[i].block_size, co_buf[i].jnl_offset);
1111 if (number
== (off_t
)-1) {
1112 // printf("jnl: replay_journal: skipping killed fs block\n");
1115 // do journal read, and set the phys. block
1116 ret
= read_journal_data(jnl
, &jnl_offset
, block_ptr
, size
);
1118 printf("jnl: replay_journal: Could not read journal entry data @ offset 0x%llx!\n", offset
);
1122 if (update_fs_block(jnl
, block_ptr
, number
, size
) != 0) {
1129 // done replaying; update jnl header
1130 if (write_journal_header(jnl
) != 0) {
1135 kmem_free(kernel_map
, (vm_offset_t
)block_ptr
, max_bsize
);
1138 // free the coalesce buffer
1139 FREE(co_buf
, M_TEMP
);
1142 kmem_free(kernel_map
, (vm_offset_t
)buff
, jnl
->jhdr
->blhdr_size
);
1147 kmem_free(kernel_map
, (vm_offset_t
)block_ptr
, max_bsize
);
1150 FREE(co_buf
, M_TEMP
);
1152 kmem_free(kernel_map
, (vm_offset_t
)buff
, jnl
->jhdr
->blhdr_size
);
1158 #define DEFAULT_TRANSACTION_BUFFER_SIZE (128*1024)
1159 //#define DEFAULT_TRANSACTION_BUFFER_SIZE (256*1024) // better performance but uses more mem
1160 #define MAX_TRANSACTION_BUFFER_SIZE (512*1024)
1162 // XXXdbg - so I can change it in the debugger
1163 int def_tbuffer_size
= 0;
1167 // This function sets the size of the tbuffer and the
1168 // size of the blhdr. It assumes that jnl->jhdr->size
1169 // and jnl->jhdr->jhdr_size are already valid.
1172 size_up_tbuffer(journal
*jnl
, int tbuffer_size
, int phys_blksz
)
1175 // one-time initialization based on how much memory
1176 // there is in the machine.
1178 if (def_tbuffer_size
== 0) {
1179 if (mem_size
< (256*1024*1024)) {
1180 def_tbuffer_size
= DEFAULT_TRANSACTION_BUFFER_SIZE
;
1181 } else if (mem_size
< (512*1024*1024)) {
1182 def_tbuffer_size
= DEFAULT_TRANSACTION_BUFFER_SIZE
* 2;
1183 } else if (mem_size
< (1024*1024*1024)) {
1184 def_tbuffer_size
= DEFAULT_TRANSACTION_BUFFER_SIZE
* 3;
1185 } else if (mem_size
>= (1024*1024*1024)) {
1186 def_tbuffer_size
= DEFAULT_TRANSACTION_BUFFER_SIZE
* 4;
1190 // size up the transaction buffer... can't be larger than the number
1191 // of blocks that can fit in a block_list_header block.
1192 if (tbuffer_size
== 0) {
1193 jnl
->tbuffer_size
= def_tbuffer_size
;
1195 // make sure that the specified tbuffer_size isn't too small
1196 if (tbuffer_size
< jnl
->jhdr
->blhdr_size
* 2) {
1197 tbuffer_size
= jnl
->jhdr
->blhdr_size
* 2;
1199 // and make sure it's an even multiple of the block size
1200 if ((tbuffer_size
% jnl
->jhdr
->jhdr_size
) != 0) {
1201 tbuffer_size
-= (tbuffer_size
% jnl
->jhdr
->jhdr_size
);
1204 jnl
->tbuffer_size
= tbuffer_size
;
1207 if (jnl
->tbuffer_size
> (jnl
->jhdr
->size
/ 2)) {
1208 jnl
->tbuffer_size
= (jnl
->jhdr
->size
/ 2);
1211 if (jnl
->tbuffer_size
> MAX_TRANSACTION_BUFFER_SIZE
) {
1212 jnl
->tbuffer_size
= MAX_TRANSACTION_BUFFER_SIZE
;
1215 jnl
->jhdr
->blhdr_size
= (jnl
->tbuffer_size
/ jnl
->jhdr
->jhdr_size
) * sizeof(block_info
);
1216 if (jnl
->jhdr
->blhdr_size
< phys_blksz
) {
1217 jnl
->jhdr
->blhdr_size
= phys_blksz
;
1218 } else if ((jnl
->jhdr
->blhdr_size
% phys_blksz
) != 0) {
1219 // have to round up so we're an even multiple of the physical block size
1220 jnl
->jhdr
->blhdr_size
= (jnl
->jhdr
->blhdr_size
+ (phys_blksz
- 1)) & ~(phys_blksz
- 1);
1227 journal_create(struct vnode
*jvp
,
1231 size_t min_fs_blksz
,
1233 int32_t tbuffer_size
,
1234 void (*flush
)(void *arg
),
1239 struct vfs_context context
;
1241 context
.vc_proc
= current_proc();
1242 context
.vc_ucred
= FSCRED
;
1244 /* Get the real physical block size. */
1245 if (VNOP_IOCTL(jvp
, DKIOCGETBLOCKSIZE
, (caddr_t
)&phys_blksz
, 0, &context
)) {
1249 if (phys_blksz
> min_fs_blksz
) {
1250 printf("jnl: create: error: phys blksize %d bigger than min fs blksize %d\n",
1251 phys_blksz
, min_fs_blksz
);
1255 if ((journal_size
% phys_blksz
) != 0) {
1256 printf("jnl: create: journal size 0x%llx is not an even multiple of block size 0x%x\n",
1257 journal_size
, phys_blksz
);
1261 MALLOC_ZONE(jnl
, struct journal
*, sizeof(struct journal
), M_JNL_JNL
, M_WAITOK
);
1262 memset(jnl
, 0, sizeof(*jnl
));
1265 jnl
->jdev_offset
= offset
;
1268 jnl
->flush_arg
= arg
;
1269 jnl
->flags
= (flags
& JOURNAL_OPTION_FLAGS_MASK
);
1270 lck_mtx_init(&jnl
->old_start_lock
, jnl_mutex_group
, jnl_lock_attr
);
1272 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&jnl
->header_buf
, phys_blksz
)) {
1273 printf("jnl: create: could not allocate space for header buffer (%d bytes)\n", phys_blksz
);
1274 goto bad_kmem_alloc
;
1277 memset(jnl
->header_buf
, 0, phys_blksz
);
1279 jnl
->jhdr
= (journal_header
*)jnl
->header_buf
;
1280 jnl
->jhdr
->magic
= JOURNAL_HEADER_MAGIC
;
1281 jnl
->jhdr
->endian
= ENDIAN_MAGIC
;
1282 jnl
->jhdr
->start
= phys_blksz
; // start at block #1, block #0 is for the jhdr itself
1283 jnl
->jhdr
->end
= phys_blksz
;
1284 jnl
->jhdr
->size
= journal_size
;
1285 jnl
->jhdr
->jhdr_size
= phys_blksz
;
1286 size_up_tbuffer(jnl
, tbuffer_size
, phys_blksz
);
1288 jnl
->active_start
= jnl
->jhdr
->start
;
1290 // XXXdbg - for testing you can force the journal to wrap around
1291 // jnl->jhdr->start = jnl->jhdr->size - (phys_blksz*3);
1292 // jnl->jhdr->end = jnl->jhdr->size - (phys_blksz*3);
1294 lck_mtx_init(&jnl
->jlock
, jnl_mutex_group
, jnl_lock_attr
);
1296 if (write_journal_header(jnl
) != 0) {
1297 printf("jnl: journal_create: failed to write journal header.\n");
1305 kmem_free(kernel_map
, (vm_offset_t
)jnl
->header_buf
, phys_blksz
);
1308 FREE_ZONE(jnl
, sizeof(struct journal
), M_JNL_JNL
);
1314 journal_open(struct vnode
*jvp
,
1318 size_t min_fs_blksz
,
1320 int32_t tbuffer_size
,
1321 void (*flush
)(void *arg
),
1325 int orig_blksz
=0, phys_blksz
;
1326 int orig_checksum
, checksum
;
1327 struct vfs_context context
;
1329 context
.vc_proc
= current_proc();
1330 context
.vc_ucred
= FSCRED
;
1332 /* Get the real physical block size. */
1333 if (VNOP_IOCTL(jvp
, DKIOCGETBLOCKSIZE
, (caddr_t
)&phys_blksz
, 0, &context
)) {
1337 if (phys_blksz
> min_fs_blksz
) {
1338 printf("jnl: create: error: phys blksize %d bigger than min fs blksize %d\n",
1339 phys_blksz
, min_fs_blksz
);
1343 if ((journal_size
% phys_blksz
) != 0) {
1344 printf("jnl: open: journal size 0x%llx is not an even multiple of block size 0x%x\n",
1345 journal_size
, phys_blksz
);
1349 MALLOC_ZONE(jnl
, struct journal
*, sizeof(struct journal
), M_JNL_JNL
, M_WAITOK
);
1350 memset(jnl
, 0, sizeof(*jnl
));
1353 jnl
->jdev_offset
= offset
;
1356 jnl
->flush_arg
= arg
;
1357 jnl
->flags
= (flags
& JOURNAL_OPTION_FLAGS_MASK
);
1358 lck_mtx_init(&jnl
->old_start_lock
, jnl_mutex_group
, jnl_lock_attr
);
1360 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&jnl
->header_buf
, phys_blksz
)) {
1361 printf("jnl: create: could not allocate space for header buffer (%d bytes)\n", phys_blksz
);
1362 goto bad_kmem_alloc
;
1365 jnl
->jhdr
= (journal_header
*)jnl
->header_buf
;
1366 memset(jnl
->jhdr
, 0, sizeof(journal_header
)+4);
1368 // we have to set this up here so that do_journal_io() will work
1369 jnl
->jhdr
->jhdr_size
= phys_blksz
;
1371 if (read_journal_header(jnl
, jnl
->jhdr
, phys_blksz
) != phys_blksz
) {
1372 printf("jnl: open: could not read %d bytes for the journal header.\n",
1377 orig_checksum
= jnl
->jhdr
->checksum
;
1378 jnl
->jhdr
->checksum
= 0;
1380 if (jnl
->jhdr
->magic
== SWAP32(JOURNAL_HEADER_MAGIC
)) {
1381 // do this before the swap since it's done byte-at-a-time
1382 orig_checksum
= SWAP32(orig_checksum
);
1383 checksum
= calc_checksum((char *)jnl
->jhdr
, sizeof(struct journal_header
));
1384 swap_journal_header(jnl
);
1385 jnl
->flags
|= JOURNAL_NEED_SWAP
;
1387 checksum
= calc_checksum((char *)jnl
->jhdr
, sizeof(struct journal_header
));
1390 if (jnl
->jhdr
->magic
!= JOURNAL_HEADER_MAGIC
&& jnl
->jhdr
->magic
!= OLD_JOURNAL_HEADER_MAGIC
) {
1391 printf("jnl: open: journal magic is bad (0x%x != 0x%x)\n",
1392 jnl
->jhdr
->magic
, JOURNAL_HEADER_MAGIC
);
1396 // only check if we're the current journal header magic value
1397 if (jnl
->jhdr
->magic
== JOURNAL_HEADER_MAGIC
) {
1399 if (orig_checksum
!= checksum
) {
1400 printf("jnl: open: journal checksum is bad (0x%x != 0x%x)\n",
1401 orig_checksum
, checksum
);
1407 // XXXdbg - convert old style magic numbers to the new one
1408 if (jnl
->jhdr
->magic
== OLD_JOURNAL_HEADER_MAGIC
) {
1409 jnl
->jhdr
->magic
= JOURNAL_HEADER_MAGIC
;
1412 if (phys_blksz
!= jnl
->jhdr
->jhdr_size
&& jnl
->jhdr
->jhdr_size
!= 0) {
1413 printf("jnl: open: phys_blksz %d does not match journal header size %d\n",
1414 phys_blksz
, jnl
->jhdr
->jhdr_size
);
1416 orig_blksz
= phys_blksz
;
1417 phys_blksz
= jnl
->jhdr
->jhdr_size
;
1418 if (VNOP_IOCTL(jvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&phys_blksz
, FWRITE
, &context
)) {
1419 printf("jnl: could not set block size to %d bytes.\n", phys_blksz
);
1422 // goto bad_journal;
1425 if ( jnl
->jhdr
->start
<= 0
1426 || jnl
->jhdr
->start
> jnl
->jhdr
->size
1427 || jnl
->jhdr
->start
> 1024*1024*1024) {
1428 printf("jnl: open: jhdr start looks bad (0x%llx max size 0x%llx)\n",
1429 jnl
->jhdr
->start
, jnl
->jhdr
->size
);
1433 if ( jnl
->jhdr
->end
<= 0
1434 || jnl
->jhdr
->end
> jnl
->jhdr
->size
1435 || jnl
->jhdr
->end
> 1024*1024*1024) {
1436 printf("jnl: open: jhdr end looks bad (0x%llx max size 0x%llx)\n",
1437 jnl
->jhdr
->end
, jnl
->jhdr
->size
);
1441 if (jnl
->jhdr
->size
> 1024*1024*1024) {
1442 printf("jnl: open: jhdr size looks bad (0x%llx)\n", jnl
->jhdr
->size
);
1446 // XXXdbg - can't do these checks because hfs writes all kinds of
1447 // non-uniform sized blocks even on devices that have a block size
1448 // that is larger than 512 bytes (i.e. optical media w/2k blocks).
1449 // therefore these checks will fail and so we just have to punt and
1450 // do more relaxed checking...
1451 // XXXdbg if ((jnl->jhdr->start % jnl->jhdr->jhdr_size) != 0) {
1452 if ((jnl
->jhdr
->start
% 512) != 0) {
1453 printf("jnl: open: journal start (0x%llx) not a multiple of 512?\n",
1458 //XXXdbg if ((jnl->jhdr->end % jnl->jhdr->jhdr_size) != 0) {
1459 if ((jnl
->jhdr
->end
% 512) != 0) {
1460 printf("jnl: open: journal end (0x%llx) not a multiple of block size (0x%x)?\n",
1461 jnl
->jhdr
->end
, jnl
->jhdr
->jhdr_size
);
1465 // take care of replaying the journal if necessary
1466 if (flags
& JOURNAL_RESET
) {
1467 printf("jnl: journal start/end pointers reset! (jnl 0x%x; s 0x%llx e 0x%llx)\n",
1468 jnl
, jnl
->jhdr
->start
, jnl
->jhdr
->end
);
1469 jnl
->jhdr
->start
= jnl
->jhdr
->end
;
1470 } else if (replay_journal(jnl
) != 0) {
1471 printf("jnl: journal_open: Error replaying the journal!\n");
1475 if (orig_blksz
!= 0) {
1476 VNOP_IOCTL(jvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&orig_blksz
, FWRITE
, &context
);
1477 phys_blksz
= orig_blksz
;
1478 if (orig_blksz
< jnl
->jhdr
->jhdr_size
) {
1479 printf("jnl: open: jhdr_size is %d but orig phys blk size is %d. switching.\n",
1480 jnl
->jhdr
->jhdr_size
, orig_blksz
);
1482 jnl
->jhdr
->jhdr_size
= orig_blksz
;
1486 // make sure this is in sync!
1487 jnl
->active_start
= jnl
->jhdr
->start
;
1489 // set this now, after we've replayed the journal
1490 size_up_tbuffer(jnl
, tbuffer_size
, phys_blksz
);
1492 lck_mtx_init(&jnl
->jlock
, jnl_mutex_group
, jnl_lock_attr
);
1497 if (orig_blksz
!= 0) {
1498 phys_blksz
= orig_blksz
;
1499 VNOP_IOCTL(jvp
, DKIOCSETBLOCKSIZE
, (caddr_t
)&orig_blksz
, FWRITE
, &context
);
1501 kmem_free(kernel_map
, (vm_offset_t
)jnl
->header_buf
, phys_blksz
);
1503 FREE_ZONE(jnl
, sizeof(struct journal
), M_JNL_JNL
);
1509 journal_is_clean(struct vnode
*jvp
,
1513 size_t min_fs_block_size
)
1516 int phys_blksz
, ret
;
1517 int orig_checksum
, checksum
;
1518 struct vfs_context context
;
1520 context
.vc_proc
= current_proc();
1521 context
.vc_ucred
= FSCRED
;
1523 /* Get the real physical block size. */
1524 if (VNOP_IOCTL(jvp
, DKIOCGETBLOCKSIZE
, (caddr_t
)&phys_blksz
, 0, &context
)) {
1525 printf("jnl: is_clean: failed to get device block size.\n");
1529 if (phys_blksz
> min_fs_block_size
) {
1530 printf("jnl: is_clean: error: phys blksize %d bigger than min fs blksize %d\n",
1531 phys_blksz
, min_fs_block_size
);
1535 if ((journal_size
% phys_blksz
) != 0) {
1536 printf("jnl: is_clean: journal size 0x%llx is not an even multiple of block size 0x%x\n",
1537 journal_size
, phys_blksz
);
1541 memset(&jnl
, 0, sizeof(jnl
));
1543 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&jnl
.header_buf
, phys_blksz
)) {
1544 printf("jnl: is_clean: could not allocate space for header buffer (%d bytes)\n", phys_blksz
);
1548 jnl
.jhdr
= (journal_header
*)jnl
.header_buf
;
1549 memset(jnl
.jhdr
, 0, sizeof(journal_header
)+4);
1552 jnl
.jdev_offset
= offset
;
1555 // we have to set this up here so that do_journal_io() will work
1556 jnl
.jhdr
->jhdr_size
= phys_blksz
;
1558 if (read_journal_header(&jnl
, jnl
.jhdr
, phys_blksz
) != phys_blksz
) {
1559 printf("jnl: is_clean: could not read %d bytes for the journal header.\n",
1565 orig_checksum
= jnl
.jhdr
->checksum
;
1566 jnl
.jhdr
->checksum
= 0;
1568 if (jnl
.jhdr
->magic
== SWAP32(JOURNAL_HEADER_MAGIC
)) {
1569 // do this before the swap since it's done byte-at-a-time
1570 orig_checksum
= SWAP32(orig_checksum
);
1571 checksum
= calc_checksum((char *)jnl
.jhdr
, sizeof(struct journal_header
));
1572 swap_journal_header(&jnl
);
1573 jnl
.flags
|= JOURNAL_NEED_SWAP
;
1575 checksum
= calc_checksum((char *)jnl
.jhdr
, sizeof(struct journal_header
));
1578 if (jnl
.jhdr
->magic
!= JOURNAL_HEADER_MAGIC
&& jnl
.jhdr
->magic
!= OLD_JOURNAL_HEADER_MAGIC
) {
1579 printf("jnl: is_clean: journal magic is bad (0x%x != 0x%x)\n",
1580 jnl
.jhdr
->magic
, JOURNAL_HEADER_MAGIC
);
1585 if (orig_checksum
!= checksum
) {
1586 printf("jnl: is_clean: journal checksum is bad (0x%x != 0x%x)\n", orig_checksum
, checksum
);
1592 // if the start and end are equal then the journal is clean.
1593 // otherwise it's not clean and therefore an error.
1595 if (jnl
.jhdr
->start
== jnl
.jhdr
->end
) {
1602 kmem_free(kernel_map
, (vm_offset_t
)jnl
.header_buf
, phys_blksz
);
1612 journal_close(journal
*jnl
)
1614 volatile off_t
*start
, *end
;
1619 // set this before doing anything that would block so that
1620 // we start tearing things down properly.
1622 jnl
->flags
|= JOURNAL_CLOSE_PENDING
;
1624 if (jnl
->owner
!= current_thread()) {
1629 // only write stuff to disk if the journal is still valid
1631 if ((jnl
->flags
& JOURNAL_INVALID
) == 0) {
1633 if (jnl
->active_tr
) {
1634 journal_end_transaction(jnl
);
1637 // flush any buffered transactions
1639 transaction
*tr
= jnl
->cur_tr
;
1642 end_transaction(tr
, 1); // force it to get flushed
1645 //start = &jnl->jhdr->start;
1646 start
= &jnl
->active_start
;
1647 end
= &jnl
->jhdr
->end
;
1649 while (*start
!= *end
&& counter
++ < 500) {
1650 printf("jnl: close: flushing the buffer cache (start 0x%llx end 0x%llx)\n", *start
, *end
);
1652 jnl
->flush(jnl
->flush_arg
);
1654 tsleep((caddr_t
)jnl
, PRIBIO
, "jnl_close", 1);
1657 if (*start
!= *end
) {
1658 printf("jnl: close: buffer flushing didn't seem to flush out all the transactions! (0x%llx - 0x%llx)\n",
1662 // make sure this is in sync when we close the journal
1663 jnl
->jhdr
->start
= jnl
->active_start
;
1665 // if this fails there's not much we can do at this point...
1666 write_journal_header(jnl
);
1668 // if we're here the journal isn't valid any more.
1669 // so make sure we don't leave any locked blocks lying around
1670 printf("jnl: close: journal 0x%x, is invalid. aborting outstanding transactions\n", jnl
);
1671 if (jnl
->active_tr
|| jnl
->cur_tr
) {
1673 if (jnl
->active_tr
) {
1674 tr
= jnl
->active_tr
;
1675 jnl
->active_tr
= NULL
;
1681 abort_transaction(jnl
, tr
);
1682 if (jnl
->active_tr
|| jnl
->cur_tr
) {
1683 panic("jnl: close: jnl @ 0x%x had both an active and cur tr\n", jnl
);
1688 free_old_stuff(jnl
);
1690 kmem_free(kernel_map
, (vm_offset_t
)jnl
->header_buf
, jnl
->jhdr
->jhdr_size
);
1691 jnl
->jhdr
= (void *)0xbeefbabe;
1693 FREE_ZONE(jnl
, sizeof(struct journal
), M_JNL_JNL
);
1697 dump_journal(journal
*jnl
)
1702 printf(" jdev_offset %.8llx\n", jnl
->jdev_offset
);
1703 printf(" magic: 0x%.8x\n", jnl
->jhdr
->magic
);
1704 printf(" start: 0x%.8llx\n", jnl
->jhdr
->start
);
1705 printf(" end: 0x%.8llx\n", jnl
->jhdr
->end
);
1706 printf(" size: 0x%.8llx\n", jnl
->jhdr
->size
);
1707 printf(" blhdr size: %d\n", jnl
->jhdr
->blhdr_size
);
1708 printf(" jhdr size: %d\n", jnl
->jhdr
->jhdr_size
);
1709 printf(" chksum: 0x%.8x\n", jnl
->jhdr
->checksum
);
1711 printf(" completed transactions:\n");
1712 for(ctr
=jnl
->completed_trs
; ctr
; ctr
=ctr
->next
) {
1713 printf(" 0x%.8llx - 0x%.8llx\n", ctr
->journal_start
, ctr
->journal_end
);
1720 free_space(journal
*jnl
)
1724 if (jnl
->jhdr
->start
< jnl
->jhdr
->end
) {
1725 free_space
= jnl
->jhdr
->size
- (jnl
->jhdr
->end
- jnl
->jhdr
->start
) - jnl
->jhdr
->jhdr_size
;
1726 } else if (jnl
->jhdr
->start
> jnl
->jhdr
->end
) {
1727 free_space
= jnl
->jhdr
->start
- jnl
->jhdr
->end
;
1729 // journal is completely empty
1730 free_space
= jnl
->jhdr
->size
- jnl
->jhdr
->jhdr_size
;
1738 // The journal must be locked on entry to this function.
1739 // The "desired_size" is in bytes.
1742 check_free_space(journal
*jnl
, int desired_size
)
1746 //printf("jnl: check free space (desired 0x%x, avail 0x%Lx)\n",
1747 // desired_size, free_space(jnl));
1750 int old_start_empty
;
1752 if (counter
++ == 5000) {
1754 panic("jnl: check_free_space: buffer flushing isn't working "
1755 "(jnl @ 0x%x s %lld e %lld f %lld [active start %lld]).\n", jnl
,
1756 jnl
->jhdr
->start
, jnl
->jhdr
->end
, free_space(jnl
), jnl
->active_start
);
1758 if (counter
> 7500) {
1759 printf("jnl: check_free_space: giving up waiting for free space.\n");
1763 // make sure there's space in the journal to hold this transaction
1764 if (free_space(jnl
) > desired_size
) {
1769 // here's where we lazily bump up jnl->jhdr->start. we'll consume
1770 // entries until there is enough space for the next transaction.
1772 old_start_empty
= 1;
1774 for(i
=0; i
< sizeof(jnl
->old_start
)/sizeof(jnl
->old_start
[0]); i
++) {
1778 while (jnl
->old_start
[i
] & 0x8000000000000000LL
) {
1779 if (counter
++ > 100) {
1780 panic("jnl: check_free_space: tr starting @ 0x%llx not flushing (jnl 0x%x).\n",
1781 jnl
->old_start
[i
], jnl
);
1784 unlock_oldstart(jnl
);
1786 jnl
->flush(jnl
->flush_arg
);
1788 tsleep((caddr_t
)jnl
, PRIBIO
, "check_free_space1", 1);
1792 if (jnl
->old_start
[i
] == 0) {
1796 old_start_empty
= 0;
1797 jnl
->jhdr
->start
= jnl
->old_start
[i
];
1798 jnl
->old_start
[i
] = 0;
1799 if (free_space(jnl
) > desired_size
) {
1800 unlock_oldstart(jnl
);
1801 write_journal_header(jnl
);
1806 unlock_oldstart(jnl
);
1808 // if we bumped the start, loop and try again
1809 if (i
< sizeof(jnl
->old_start
)/sizeof(jnl
->old_start
[0])) {
1811 } else if (old_start_empty
) {
1813 // if there is nothing in old_start anymore then we can
1814 // bump the jhdr->start to be the same as active_start
1815 // since it is possible there was only one very large
1816 // transaction in the old_start array. if we didn't do
1817 // this then jhdr->start would never get updated and we
1818 // would wind up looping until we hit the panic at the
1819 // start of the loop.
1821 jnl
->jhdr
->start
= jnl
->active_start
;
1822 write_journal_header(jnl
);
1827 // if the file system gave us a flush function, call it to so that
1828 // it can flush some blocks which hopefully will cause some transactions
1829 // to complete and thus free up space in the journal.
1831 jnl
->flush(jnl
->flush_arg
);
1834 // wait for a while to avoid being cpu-bound (this will
1835 // put us to sleep for 10 milliseconds)
1836 tsleep((caddr_t
)jnl
, PRIBIO
, "check_free_space2", 1);
1843 journal_start_transaction(journal
*jnl
)
1850 if (jnl
->flags
& JOURNAL_INVALID
) {
1854 if (jnl
->owner
== current_thread()) {
1855 if (jnl
->active_tr
== NULL
) {
1856 panic("jnl: start_tr: active_tr is NULL (jnl @ 0x%x, owner 0x%x, current_thread 0x%x\n",
1857 jnl
, jnl
->owner
, current_thread());
1859 jnl
->nested_count
++;
1865 if (jnl
->owner
!= NULL
|| jnl
->nested_count
!= 0 || jnl
->active_tr
!= NULL
) {
1866 panic("jnl: start_tr: owner 0x%x, nested count 0x%x, active_tr 0x%x jnl @ 0x%x\n",
1867 jnl
->owner
, jnl
->nested_count
, jnl
->active_tr
, jnl
);
1870 jnl
->owner
= current_thread();
1871 jnl
->nested_count
= 1;
1873 free_old_stuff(jnl
);
1875 // make sure there's room in the journal
1876 if (check_free_space(jnl
, jnl
->tbuffer_size
) != 0) {
1877 printf("jnl: start transaction failed: no space\n");
1882 // if there's a buffered transaction, use it.
1884 jnl
->active_tr
= jnl
->cur_tr
;
1890 MALLOC_ZONE(tr
, transaction
*, sizeof(transaction
), M_JNL_TR
, M_WAITOK
);
1891 memset(tr
, 0, sizeof(transaction
));
1893 tr
->tbuffer_size
= jnl
->tbuffer_size
;
1895 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&tr
->tbuffer
, tr
->tbuffer_size
)) {
1896 FREE_ZONE(tr
, sizeof(transaction
), M_JNL_TR
);
1897 printf("jnl: start transaction failed: no tbuffer mem\n");
1902 // journal replay code checksum check depends on this.
1903 memset(tr
->tbuffer
, 0, BLHDR_CHECKSUM_SIZE
);
1905 tr
->blhdr
= (block_list_header
*)tr
->tbuffer
;
1906 tr
->blhdr
->max_blocks
= (jnl
->jhdr
->blhdr_size
/ sizeof(block_info
)) - 1;
1907 tr
->blhdr
->num_blocks
= 1; // accounts for this header block
1908 tr
->blhdr
->bytes_used
= jnl
->jhdr
->blhdr_size
;
1911 tr
->total_bytes
= jnl
->jhdr
->blhdr_size
;
1914 jnl
->active_tr
= tr
;
1916 // printf("jnl: start_tr: owner 0x%x new tr @ 0x%x\n", jnl->owner, tr);
1922 jnl
->nested_count
= 0;
1923 unlock_journal(jnl
);
1929 journal_modify_block_start(journal
*jnl
, struct buf
*bp
)
1935 if (jnl
->flags
& JOURNAL_INVALID
) {
1939 // XXXdbg - for debugging I want this to be true. later it may
1940 // not be necessary.
1941 if ((buf_flags(bp
) & B_META
) == 0) {
1942 panic("jnl: modify_block_start: bp @ 0x%x is not a meta-data block! (jnl 0x%x)\n", bp
, jnl
);
1945 tr
= jnl
->active_tr
;
1946 CHECK_TRANSACTION(tr
);
1948 if (jnl
->owner
!= current_thread()) {
1949 panic("jnl: modify_block_start: called w/out a transaction! jnl 0x%x, owner 0x%x, curact 0x%x\n",
1950 jnl
, jnl
->owner
, current_thread());
1953 free_old_stuff(jnl
);
1955 //printf("jnl: mod block start (bp 0x%x vp 0x%x l/blkno %qd/%qd bsz %d; total bytes %d)\n",
1956 // bp, buf_vnode(bp), buf_lblkno(bp), buf_blkno(bp), buf_size(bp), tr->total_bytes);
1958 // can't allow blocks that aren't an even multiple of the
1959 // underlying block size.
1960 if ((buf_size(bp
) % jnl
->jhdr
->jhdr_size
) != 0) {
1961 panic("jnl: mod block start: bufsize %d not a multiple of block size %d\n",
1962 buf_size(bp
), jnl
->jhdr
->jhdr_size
);
1966 // make sure that this transaction isn't bigger than the whole journal
1967 if (tr
->total_bytes
+buf_size(bp
) >= (jnl
->jhdr
->size
- jnl
->jhdr
->jhdr_size
)) {
1968 panic("jnl: transaction too big (%d >= %lld bytes, bufsize %d, tr 0x%x bp 0x%x)\n",
1969 tr
->total_bytes
, (tr
->jnl
->jhdr
->size
- jnl
->jhdr
->jhdr_size
), buf_size(bp
), tr
, bp
);
1973 // if the block is dirty and not already locked we have to write
1974 // it out before we muck with it because it has data that belongs
1975 // (presumably) to another transaction.
1977 if ((buf_flags(bp
) & (B_DELWRI
| B_LOCKED
)) == B_DELWRI
) {
1979 if (buf_flags(bp
) & B_ASYNC
) {
1980 panic("modify_block_start: bp @ 0x% has async flag set!\n", bp
);
1983 // this will cause it to not be buf_brelse()'d
1984 buf_setflags(bp
, B_NORELSE
);
1987 buf_setflags(bp
, B_LOCKED
);
1993 journal_modify_block_abort(journal
*jnl
, struct buf
*bp
)
1996 block_list_header
*blhdr
;
2001 tr
= jnl
->active_tr
;
2004 // if there's no active transaction then we just want to
2005 // call buf_brelse() and return since this is just a block
2006 // that happened to be modified as part of another tr.
2013 if (jnl
->flags
& JOURNAL_INVALID
) {
2017 CHECK_TRANSACTION(tr
);
2019 if (jnl
->owner
!= current_thread()) {
2020 panic("jnl: modify_block_abort: called w/out a transaction! jnl 0x%x, owner 0x%x, curact 0x%x\n",
2021 jnl
, jnl
->owner
, current_thread());
2024 free_old_stuff(jnl
);
2026 // printf("jnl: modify_block_abort: tr 0x%x bp 0x%x\n", jnl->active_tr, bp);
2028 // first check if it's already part of this transaction
2029 for(blhdr
=tr
->blhdr
; blhdr
; blhdr
=(block_list_header
*)((long)blhdr
->binfo
[0].bnum
)) {
2030 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
2031 if (bp
== blhdr
->binfo
[i
].bp
) {
2032 if (buf_size(bp
) != blhdr
->binfo
[i
].bsize
) {
2033 panic("jnl: bp @ 0x%x changed size on me! (%d vs. %d, jnl 0x%x)\n",
2034 bp
, buf_size(bp
), blhdr
->binfo
[i
].bsize
, jnl
);
2040 if (i
< blhdr
->num_blocks
) {
2046 // if blhdr is null, then this block has only had modify_block_start
2047 // called on it as part of the current transaction. that means that
2048 // it is ok to clear the LOCKED bit since it hasn't actually been
2049 // modified. if blhdr is non-null then modify_block_end was called
2050 // on it and so we need to keep it locked in memory.
2052 if (blhdr
== NULL
) {
2053 buf_clearflags(bp
, B_LOCKED
);
2062 journal_modify_block_end(journal
*jnl
, struct buf
*bp
)
2064 int i
, j
, tbuffer_offset
;
2066 block_list_header
*blhdr
, *prev
=NULL
;
2071 if (jnl
->flags
& JOURNAL_INVALID
) {
2075 tr
= jnl
->active_tr
;
2076 CHECK_TRANSACTION(tr
);
2078 if (jnl
->owner
!= current_thread()) {
2079 panic("jnl: modify_block_end: called w/out a transaction! jnl 0x%x, owner 0x%x, curact 0x%x\n",
2080 jnl
, jnl
->owner
, current_thread());
2083 free_old_stuff(jnl
);
2085 //printf("jnl: mod block end: (bp 0x%x vp 0x%x l/blkno %qd/%qd bsz %d, total bytes %d)\n",
2086 // bp, buf_vnode(bp), buf_lblkno(bp), buf_blkno(bp), buf_size(bp), tr->total_bytes);
2088 if ((buf_flags(bp
) & B_LOCKED
) == 0) {
2089 panic("jnl: modify_block_end: bp 0x%x not locked! jnl @ 0x%x\n", bp
, jnl
);
2092 // first check if it's already part of this transaction
2093 for(blhdr
=tr
->blhdr
; blhdr
; prev
=blhdr
,blhdr
=(block_list_header
*)((long)blhdr
->binfo
[0].bnum
)) {
2094 tbuffer_offset
= jnl
->jhdr
->blhdr_size
;
2096 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
2097 if (bp
== blhdr
->binfo
[i
].bp
) {
2098 if (buf_size(bp
) != blhdr
->binfo
[i
].bsize
) {
2099 panic("jnl: bp @ 0x%x changed size on me! (%d vs. %d, jnl 0x%x)\n",
2100 bp
, buf_size(bp
), blhdr
->binfo
[i
].bsize
, jnl
);
2104 tbuffer_offset
+= blhdr
->binfo
[i
].bsize
;
2107 if (i
< blhdr
->num_blocks
) {
2114 && (prev
->num_blocks
+1) <= prev
->max_blocks
2115 && (prev
->bytes_used
+buf_size(bp
)) <= tr
->tbuffer_size
) {
2117 } else if (blhdr
== NULL
) {
2118 block_list_header
*nblhdr
;
2121 panic("jnl: modify block end: no way man, prev == NULL?!?, jnl 0x%x, bp 0x%x\n", jnl
, bp
);
2124 // we got to the end of the list, didn't find the block and there's
2125 // no room in the block_list_header pointed to by prev
2127 // we allocate another tbuffer and link it in at the end of the list
2128 // through prev->binfo[0].bnum. that's a skanky way to do things but
2129 // avoids having yet another linked list of small data structures to manage.
2131 if (kmem_alloc(kernel_map
, (vm_offset_t
*)&nblhdr
, tr
->tbuffer_size
)) {
2132 panic("jnl: end_tr: no space for new block tr @ 0x%x (total bytes: %d)!\n",
2133 tr
, tr
->total_bytes
);
2136 // journal replay code checksum check depends on this.
2137 memset(nblhdr
, 0, BLHDR_CHECKSUM_SIZE
);
2139 // initialize the new guy
2140 nblhdr
->max_blocks
= (jnl
->jhdr
->blhdr_size
/ sizeof(block_info
)) - 1;
2141 nblhdr
->num_blocks
= 1; // accounts for this header block
2142 nblhdr
->bytes_used
= jnl
->jhdr
->blhdr_size
;
2145 tr
->total_bytes
+= jnl
->jhdr
->blhdr_size
;
2147 // then link him in at the end
2148 prev
->binfo
[0].bnum
= (off_t
)((long)nblhdr
);
2150 // and finally switch to using the new guy
2152 tbuffer_offset
= jnl
->jhdr
->blhdr_size
;
2157 if ((i
+1) > blhdr
->max_blocks
) {
2158 panic("jnl: modify_block_end: i = %d, max_blocks %d\n", i
, blhdr
->max_blocks
);
2161 // copy the data into the in-memory transaction buffer
2162 blkptr
= (char *)&((char *)blhdr
)[tbuffer_offset
];
2163 memcpy(blkptr
, buf_dataptr(bp
), buf_size(bp
));
2165 // if this is true then this is a new block we haven't seen
2166 if (i
>= blhdr
->num_blocks
) {
2172 bsize
= buf_size(bp
);
2174 blhdr
->binfo
[i
].bnum
= (off_t
)(buf_blkno(bp
));
2175 blhdr
->binfo
[i
].bsize
= bsize
;
2176 blhdr
->binfo
[i
].bp
= bp
;
2178 blhdr
->bytes_used
+= bsize
;
2179 tr
->total_bytes
+= bsize
;
2181 blhdr
->num_blocks
++;
2189 journal_kill_block(journal
*jnl
, struct buf
*bp
)
2193 block_list_header
*blhdr
;
2198 if (jnl
->flags
& JOURNAL_INVALID
) {
2202 tr
= jnl
->active_tr
;
2203 CHECK_TRANSACTION(tr
);
2205 if (jnl
->owner
!= current_thread()) {
2206 panic("jnl: modify_block_end: called w/out a transaction! jnl 0x%x, owner 0x%x, curact 0x%x\n",
2207 jnl
, jnl
->owner
, current_thread());
2210 free_old_stuff(jnl
);
2212 bflags
= buf_flags(bp
);
2214 if ( !(bflags
& B_LOCKED
))
2215 panic("jnl: modify_block_end: called with bp not B_LOCKED");
2218 * bp must be BL_BUSY and B_LOCKED
2220 // first check if it's already part of this transaction
2221 for(blhdr
=tr
->blhdr
; blhdr
; blhdr
=(block_list_header
*)((long)blhdr
->binfo
[0].bnum
)) {
2223 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
2224 if (bp
== blhdr
->binfo
[i
].bp
) {
2227 buf_clearflags(bp
, B_LOCKED
);
2229 // this undoes the vnode_ref() in journal_modify_block_end()
2231 vnode_rele_ext(vp
, 0, 1);
2233 // if the block has the DELWRI and FILTER bits sets, then
2234 // things are seriously weird. if it was part of another
2235 // transaction then journal_modify_block_start() should
2236 // have force it to be written.
2238 //if ((bflags & B_DELWRI) && (bflags & B_FILTER)) {
2239 // panic("jnl: kill block: this defies all logic! bp 0x%x\n", bp);
2241 tr
->num_killed
+= buf_size(bp
);
2243 blhdr
->binfo
[i
].bp
= NULL
;
2244 blhdr
->binfo
[i
].bnum
= (off_t
)-1;
2252 if (i
< blhdr
->num_blocks
) {
2262 journal_binfo_cmp(void *a
, void *b
)
2264 block_info
*bi_a
= (struct block_info
*)a
;
2265 block_info
*bi_b
= (struct block_info
*)b
;
2268 if (bi_a
->bp
== NULL
) {
2271 if (bi_b
->bp
== NULL
) {
2275 // don't have to worry about negative block
2276 // numbers so this is ok to do.
2278 res
= (buf_blkno(bi_a
->bp
) - buf_blkno(bi_b
->bp
));
2285 end_transaction(transaction
*tr
, int force_it
)
2290 journal
*jnl
= tr
->jnl
;
2292 block_list_header
*blhdr
=NULL
, *next
=NULL
;
2295 panic("jnl: jnl @ 0x%x already has cur_tr 0x%x, new tr: 0x%x\n",
2296 jnl
, jnl
->cur_tr
, tr
);
2299 // if there weren't any modified blocks in the transaction
2300 // just save off the transaction pointer and return.
2301 if (tr
->total_bytes
== jnl
->jhdr
->blhdr_size
) {
2306 // if our transaction buffer isn't very full, just hang
2307 // on to it and don't actually flush anything. this is
2308 // what is known as "group commit". we will flush the
2309 // transaction buffer if it's full or if we have more than
2310 // one of them so we don't start hogging too much memory.
2313 && (jnl
->flags
& JOURNAL_NO_GROUP_COMMIT
) == 0
2314 && tr
->num_blhdrs
< 3
2315 && (tr
->total_bytes
<= ((tr
->tbuffer_size
*tr
->num_blhdrs
) - tr
->tbuffer_size
/8))) {
2322 // if we're here we're going to flush the transaction buffer to disk.
2323 // make sure there is room in the journal first.
2324 check_free_space(jnl
, tr
->total_bytes
);
2326 // range check the end index
2327 if (jnl
->jhdr
->end
<= 0 || jnl
->jhdr
->end
> jnl
->jhdr
->size
) {
2328 panic("jnl: end_transaction: end is bogus 0x%llx (sz 0x%llx)\n",
2329 jnl
->jhdr
->end
, jnl
->jhdr
->size
);
2332 // this transaction starts where the current journal ends
2333 tr
->journal_start
= jnl
->jhdr
->end
;
2334 end
= jnl
->jhdr
->end
;
2337 // if the first entry in old_start[] isn't free yet, loop calling the
2338 // file system flush routine until it is (or we panic).
2342 while ((jnl
->old_start
[0] & 0x8000000000000000LL
) != 0) {
2344 unlock_oldstart(jnl
);
2347 jnl
->flush(jnl
->flush_arg
);
2350 // yield the cpu so others can get in to clear the lock bit
2351 (void)tsleep((void *)jnl
, PRIBIO
, "jnl-old-start-sleep", 1);
2356 panic("jnl: transaction that started at 0x%llx is not completing! jnl 0x%x\n",
2357 jnl
->old_start
[0] & (~0x8000000000000000LL
), jnl
);
2362 // slide everyone else down and put our latest guy in the last
2363 // entry in the old_start array
2365 memcpy(&jnl
->old_start
[0], &jnl
->old_start
[1], sizeof(jnl
->old_start
)-sizeof(jnl
->old_start
[0]));
2366 jnl
->old_start
[sizeof(jnl
->old_start
)/sizeof(jnl
->old_start
[0]) - 1] = tr
->journal_start
| 0x8000000000000000LL
;
2368 unlock_oldstart(jnl
);
2371 // for each block, make sure that the physical block # is set
2372 for(blhdr
=tr
->blhdr
; blhdr
; blhdr
=next
) {
2374 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
2379 bp
= blhdr
->binfo
[i
].bp
;
2380 if (bp
== NULL
) { // only true if a block was "killed"
2381 if (blhdr
->binfo
[i
].bnum
!= (off_t
)-1) {
2382 panic("jnl: inconsistent binfo (NULL bp w/bnum %lld; jnl @ 0x%x, tr 0x%x)\n",
2383 blhdr
->binfo
[i
].bnum
, jnl
, tr
);
2388 blkno
= buf_blkno(bp
);
2389 lblkno
= buf_lblkno(bp
);
2391 if (vp
== NULL
&& lblkno
== blkno
) {
2392 printf("jnl: end_tr: bad news! bp @ 0x%x w/null vp and l/blkno = %qd/%qd. aborting the transaction (tr 0x%x jnl 0x%x).\n",
2393 bp
, lblkno
, blkno
, tr
, jnl
);
2397 // if the lblkno is the same as blkno and this bp isn't
2398 // associated with the underlying file system device then
2399 // we need to call bmap() to get the actual physical block.
2401 if ((lblkno
== blkno
) && (vp
!= jnl
->fsdev
)) {
2403 size_t contig_bytes
;
2405 if (VNOP_BLKTOOFF(vp
, lblkno
, &f_offset
)) {
2406 printf("jnl: end_tr: vnop_blktooff failed @ 0x%x, jnl 0x%x\n", bp
, jnl
);
2409 if (VNOP_BLOCKMAP(vp
, f_offset
, buf_count(bp
), &blkno
, &contig_bytes
, NULL
, 0, NULL
)) {
2410 printf("jnl: end_tr: can't blockmap the bp @ 0x%x, jnl 0x%x\n", bp
, jnl
);
2413 if ((uint32_t)contig_bytes
< buf_count(bp
)) {
2414 printf("jnl: end_tr: blk not physically contiguous on disk@ 0x%x, jnl 0x%x\n", bp
, jnl
);
2417 buf_setblkno(bp
, blkno
);
2419 // update this so we write out the correct physical block number!
2420 blhdr
->binfo
[i
].bnum
= (off_t
)(blkno
);
2423 next
= (block_list_header
*)((long)blhdr
->binfo
[0].bnum
);
2426 for(blhdr
=tr
->blhdr
; blhdr
; blhdr
=(block_list_header
*)((long)blhdr
->binfo
[0].bnum
)) {
2428 amt
= blhdr
->bytes_used
;
2430 blhdr
->checksum
= 0;
2431 blhdr
->checksum
= calc_checksum((char *)blhdr
, BLHDR_CHECKSUM_SIZE
);
2433 ret
= write_journal_data(jnl
, &end
, blhdr
, amt
);
2435 printf("jnl: end_transaction: only wrote %d of %d bytes to the journal!\n",
2442 jnl
->jhdr
->end
= end
; // update where the journal now ends
2443 tr
->journal_end
= end
; // the transaction ends here too
2444 if (tr
->journal_start
== 0 || tr
->journal_end
== 0) {
2445 panic("jnl: end_transaction: bad tr journal start/end: 0x%llx 0x%llx\n",
2446 tr
->journal_start
, tr
->journal_end
);
2449 if (write_journal_header(jnl
) != 0) {
2454 // setup for looping through all the blhdr's. we null out the
2455 // tbuffer and blhdr fields so that they're not used any more.
2461 // the buffer_flushed_callback will only be called for the
2462 // real blocks that get flushed so we have to account for
2463 // the block_list_headers here.
2465 tr
->num_flushed
= tr
->num_blhdrs
* jnl
->jhdr
->blhdr_size
;
2467 // for each block, set the iodone callback and unlock it
2468 for(; blhdr
; blhdr
=next
) {
2470 // we can re-order the buf ptrs because everything is written out already
2471 qsort(&blhdr
->binfo
[1], blhdr
->num_blocks
-1, sizeof(block_info
), journal_binfo_cmp
);
2473 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
2474 if (blhdr
->binfo
[i
].bp
== NULL
) {
2478 errno
= buf_meta_bread(buf_vnode(blhdr
->binfo
[i
].bp
),
2479 buf_lblkno(blhdr
->binfo
[i
].bp
),
2480 buf_size(blhdr
->binfo
[i
].bp
),
2483 if (errno
== 0 && bp
!= NULL
) {
2484 struct vnode
*save_vp
;
2487 if (bp
!= blhdr
->binfo
[i
].bp
) {
2488 panic("jnl: end_tr: got back a different bp! (bp 0x%x should be 0x%x, jnl 0x%x\n",
2489 bp
, blhdr
->binfo
[i
].bp
, jnl
);
2492 if ((buf_flags(bp
) & (B_LOCKED
|B_DELWRI
)) != (B_LOCKED
|B_DELWRI
)) {
2493 if (jnl
->flags
& JOURNAL_CLOSE_PENDING
) {
2494 buf_clearflags(bp
, B_LOCKED
);
2498 panic("jnl: end_tr: !!!DANGER!!! bp 0x%x flags (0x%x) not LOCKED & DELWRI\n", bp
, buf_flags(bp
));
2501 save_vp
= buf_vnode(bp
);
2503 buf_setfilter(bp
, buffer_flushed_callback
, tr
, &cur_filter
, NULL
);
2506 panic("jnl: bp @ 0x%x (blkno %qd, vp 0x%x) has non-null iodone (0x%x) buffflushcb 0x%x\n",
2507 bp
, buf_blkno(bp
), save_vp
, cur_filter
, buffer_flushed_callback
);
2509 buf_clearflags(bp
, B_LOCKED
);
2511 // kicking off the write here helps performance
2513 // XXXdbg this is good for testing: buf_bdwrite(bp);
2516 // this undoes the vnode_ref() in journal_modify_block_end()
2517 vnode_rele_ext(save_vp
, 0, 1);
2519 printf("jnl: end_transaction: could not find block %Ld vp 0x%x!\n",
2520 blhdr
->binfo
[i
].bnum
, blhdr
->binfo
[i
].bp
);
2522 buf_clearflags(bp
, B_LOCKED
);
2528 next
= (block_list_header
*)((long)blhdr
->binfo
[0].bnum
);
2530 // we can free blhdr here since we won't need it any more
2531 blhdr
->binfo
[0].bnum
= 0xdeadc0de;
2532 kmem_free(kernel_map
, (vm_offset_t
)blhdr
, tr
->tbuffer_size
);
2535 //printf("jnl: end_tr: tr @ 0x%x, jnl-blocks: 0x%llx - 0x%llx. exit!\n",
2536 // tr, tr->journal_start, tr->journal_end);
2541 jnl
->flags
|= JOURNAL_INVALID
;
2542 jnl
->old_start
[sizeof(jnl
->old_start
)/sizeof(jnl
->old_start
[0]) - 1] &= ~0x8000000000000000LL
;
2543 abort_transaction(jnl
, tr
);
2548 abort_transaction(journal
*jnl
, transaction
*tr
)
2552 block_list_header
*blhdr
, *next
;
2554 struct vnode
*save_vp
;
2556 // for each block list header, iterate over the blocks then
2557 // free up the memory associated with the block list.
2559 // for each block, clear the lock bit and release it.
2561 for(blhdr
=tr
->blhdr
; blhdr
; blhdr
=next
) {
2563 for(i
=1; i
< blhdr
->num_blocks
; i
++) {
2564 if (blhdr
->binfo
[i
].bp
== NULL
) {
2567 if ( (buf_vnode(blhdr
->binfo
[i
].bp
) == NULL
) ||
2568 !(buf_flags(blhdr
->binfo
[i
].bp
) & B_LOCKED
) ) {
2572 errno
= buf_meta_bread(buf_vnode(blhdr
->binfo
[i
].bp
),
2573 buf_lblkno(blhdr
->binfo
[i
].bp
),
2574 buf_size(blhdr
->binfo
[i
].bp
),
2578 if (bp
!= blhdr
->binfo
[i
].bp
) {
2579 panic("jnl: abort_tr: got back a different bp! (bp 0x%x should be 0x%x, jnl 0x%x\n",
2580 bp
, blhdr
->binfo
[i
].bp
, jnl
);
2583 // releasing a bp marked invalid
2584 // also clears the locked and delayed state
2585 buf_markinvalid(bp
);
2586 save_vp
= buf_vnode(bp
);
2590 vnode_rele_ext(save_vp
, 0, 1);
2592 printf("jnl: abort_tr: could not find block %Ld vp 0x%x!\n",
2593 blhdr
->binfo
[i
].bnum
, blhdr
->binfo
[i
].bp
);
2600 next
= (block_list_header
*)((long)blhdr
->binfo
[0].bnum
);
2602 // we can free blhdr here since we won't need it any more
2603 blhdr
->binfo
[0].bnum
= 0xdeadc0de;
2604 kmem_free(kernel_map
, (vm_offset_t
)blhdr
, tr
->tbuffer_size
);
2609 tr
->total_bytes
= 0xdbadc0de;
2610 FREE_ZONE(tr
, sizeof(transaction
), M_JNL_TR
);
2615 journal_end_transaction(journal
*jnl
)
2622 if ((jnl
->flags
& JOURNAL_INVALID
) && jnl
->owner
== NULL
) {
2626 if (jnl
->owner
!= current_thread()) {
2627 panic("jnl: end_tr: I'm not the owner! jnl 0x%x, owner 0x%x, curact 0x%x\n",
2628 jnl
, jnl
->owner
, current_thread());
2631 free_old_stuff(jnl
);
2633 jnl
->nested_count
--;
2634 if (jnl
->nested_count
> 0) {
2636 } else if (jnl
->nested_count
< 0) {
2637 panic("jnl: jnl @ 0x%x has negative nested count (%d). bad boy.\n", jnl
, jnl
->nested_count
);
2640 if (jnl
->flags
& JOURNAL_INVALID
) {
2641 if (jnl
->active_tr
) {
2642 if (jnl
->cur_tr
!= NULL
) {
2643 panic("jnl: journal @ 0x%x has active tr (0x%x) and cur tr (0x%x)\n",
2644 jnl
, jnl
->active_tr
, jnl
->cur_tr
);
2647 tr
= jnl
->active_tr
;
2648 jnl
->active_tr
= NULL
;
2649 abort_transaction(jnl
, tr
);
2653 unlock_journal(jnl
);
2658 tr
= jnl
->active_tr
;
2659 CHECK_TRANSACTION(tr
);
2661 // clear this out here so that when check_free_space() calls
2662 // the FS flush function, we don't panic in journal_flush()
2663 // if the FS were to call that. note: check_free_space() is
2664 // called from end_transaction().
2666 jnl
->active_tr
= NULL
;
2667 ret
= end_transaction(tr
, 0);
2670 unlock_journal(jnl
);
2677 journal_flush(journal
*jnl
)
2679 int need_signal
= 0;
2683 if (jnl
->flags
& JOURNAL_INVALID
) {
2687 if (jnl
->owner
!= current_thread()) {
2694 free_old_stuff(jnl
);
2696 // if we're not active, flush any buffered transactions
2697 if (jnl
->active_tr
== NULL
&& jnl
->cur_tr
) {
2698 transaction
*tr
= jnl
->cur_tr
;
2701 end_transaction(tr
, 1); // force it to get flushed
2705 unlock_journal(jnl
);
2712 journal_active(journal
*jnl
)
2714 if (jnl
->flags
& JOURNAL_INVALID
) {
2718 return (jnl
->active_tr
== NULL
) ? 0 : 1;
2722 journal_owner(journal
*jnl
)