]> git.saurik.com Git - apple/hfs.git/blob - core/hfs_journal.c
hfs-407.1.3.tar.gz
[apple/hfs.git] / core / hfs_journal.c
1 /*
2 * Copyright (c) 2002-2015 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 //
29 // This file implements a simple write-ahead journaling layer.
30 // In theory any file system can make use of it by calling these
31 // functions when the fs wants to modify meta-data blocks. See
32 // hfs_journal.h for a more detailed description of the api and
33 // data structures.
34 //
35 // Dominic Giampaolo (dbg@apple.com)
36 //
37
38 #ifdef KERNEL
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/kernel.h>
43 #include <sys/stat.h>
44 #include <sys/namei.h>
45 #include <sys/ioctl.h>
46 #include <sys/ubc.h>
47 #include <sys/malloc.h>
48 #include <kern/task.h>
49 #include <kern/thread.h>
50 #include <sys/disk.h>
51 #include <sys/kdebug.h>
52 #include <sys/kpi_private.h>
53 #include <sys/sysctl.h>
54 #include <sys/systm.h>
55 #include <miscfs/specfs/specdev.h>
56 #include <libkern/OSAtomic.h> /* OSAddAtomic */
57
58 #include "hfs.h"
59
60 kern_return_t thread_terminate(thread_t);
61
62 /*
63 * Set sysctl vfs.generic.jnl.kdebug.trim=1 to enable KERNEL_DEBUG_CONSTANT
64 * logging of trim-related calls within the journal. (They're
65 * disabled by default because there can be a lot of these events,
66 * and we don't want to overwhelm the kernel debug buffer. If you
67 * want to watch these events in particular, just set the sysctl.)
68 */
69 static int jnl_kdebug = 0;
70
71 HFS_SYSCTL(NODE, _vfs_generic_hfs, OID_AUTO, jnl, CTLFLAG_RW|CTLFLAG_LOCKED, 0, "Journal")
72 HFS_SYSCTL(NODE, _vfs_generic_hfs_jnl, OID_AUTO, kdebug, CTLFLAG_RW|CTLFLAG_LOCKED, 0, "Journal kdebug")
73 HFS_SYSCTL(INT, _vfs_generic_hfs_jnl_kdebug, OID_AUTO, trim, CTLFLAG_RW|CTLFLAG_LOCKED, &jnl_kdebug, 0, "Enable kdebug logging for journal TRIM")
74
75 #define DBG_JOURNAL_FLUSH FSDBG_CODE(DBG_JOURNAL, 1)
76 #define DBG_JOURNAL_TRIM_ADD FSDBG_CODE(DBG_JOURNAL, 2)
77 #define DBG_JOURNAL_TRIM_REMOVE FSDBG_CODE(DBG_JOURNAL, 3)
78 #define DBG_JOURNAL_TRIM_REMOVE_PENDING FSDBG_CODE(DBG_JOURNAL, 4)
79 #define DBG_JOURNAL_TRIM_REALLOC FSDBG_CODE(DBG_JOURNAL, 5)
80 #define DBG_JOURNAL_TRIM_FLUSH FSDBG_CODE(DBG_JOURNAL, 6)
81 #define DBG_JOURNAL_TRIM_UNMAP FSDBG_CODE(DBG_JOURNAL, 7)
82
83 /*
84 * Cap the journal max size to 2GB. On HFS, it will attempt to occupy
85 * a full allocation block if the current size is smaller than the allocation
86 * block on which it resides. Once we hit the exabyte filesystem range, then
87 * it will use 2GB allocation blocks. As a result, make the cap 2GB.
88 */
89 #define MAX_JOURNAL_SIZE 0x80000000U
90
91 #include <mach/machine/sdt.h>
92 #else
93
94 #include <stdio.h>
95 #include <stdlib.h>
96 #include <string.h>
97 #include <limits.h>
98 #include <errno.h>
99 #include <fcntl.h>
100 #include <unistd.h>
101 #include <stdarg.h>
102 #include <sys/types.h>
103 #include "compat.h"
104
105 #endif /* KERNEL */
106
107 #include "hfs_journal.h"
108
109 #include <sys/kdebug.h>
110
111 //
112 // By default, we grow the list of extents to trim by 4K at a time.
113 // We'll opt to flush a transaction if it contains at least
114 // JOURNAL_FLUSH_TRIM_EXTENTS extents to be trimmed (even if the number
115 // of modified blocks is small).
116 //
117 enum {
118 JOURNAL_DEFAULT_TRIM_BYTES = 4096,
119 JOURNAL_DEFAULT_TRIM_EXTENTS = JOURNAL_DEFAULT_TRIM_BYTES / sizeof(dk_extent_t),
120 JOURNAL_FLUSH_TRIM_EXTENTS = JOURNAL_DEFAULT_TRIM_EXTENTS * 15 / 16
121 };
122
123 unsigned int jnl_trim_flush_limit = JOURNAL_FLUSH_TRIM_EXTENTS;
124
125 HFS_SYSCTL(UINT, _vfs_generic_hfs_jnl, OID_AUTO, trim_flush, CTLFLAG_RW, &jnl_trim_flush_limit, 0, "number of trimmed extents to cause a journal flush")
126
127 // number of bytes to checksum in a block_list_header
128 // NOTE: this should be enough to clear out the header
129 // fields as well as the first entry of binfo[]
130 #define BLHDR_CHECKSUM_SIZE 32
131
132 static void lock_condition(journal *jnl, boolean_t *condition, const char *condition_name);
133 static void wait_condition(journal *jnl, boolean_t *condition, const char *condition_name);
134 static void unlock_condition(journal *jnl, boolean_t *condition);
135 static void finish_end_thread(transaction *tr);
136 static void write_header_thread(journal *jnl);
137 static int finish_end_transaction(transaction *tr, errno_t (*callback)(void*), void *callback_arg);
138 static int end_transaction(transaction *tr, int force_it, errno_t (*callback)(void*), void *callback_arg, boolean_t drop_lock, boolean_t must_wait);
139 static void abort_transaction(journal *jnl, transaction *tr);
140 static void dump_journal(journal *jnl);
141
142 static __inline__ void lock_oldstart(journal *jnl);
143 static __inline__ void unlock_oldstart(journal *jnl);
144 static __inline__ void lock_flush(journal *jnl);
145 static __inline__ void unlock_flush(journal *jnl);
146
147
148 //
149 // 3105942 - Coalesce writes to the same block on journal replay
150 //
151
152 typedef struct bucket {
153 off_t block_num;
154 uint32_t jnl_offset;
155 uint32_t block_size;
156 int32_t cksum;
157 } bucket;
158
159 #define STARTING_BUCKETS 256
160
161 static int add_block(journal *jnl, struct bucket **buf_ptr, off_t block_num, size_t size, size_t offset, int32_t cksum, int *num_buckets_ptr, int *num_full_ptr);
162 static int grow_table(struct bucket **buf_ptr, int num_buckets, int new_size);
163 static int lookup_bucket(struct bucket **buf_ptr, off_t block_num, int num_full);
164 static int do_overlap(journal *jnl, struct bucket **buf_ptr, int blk_index, off_t block_num, size_t size, size_t offset, int32_t cksum, int *num_buckets_ptr, int *num_full_ptr);
165 static int insert_block(journal *jnl, struct bucket **buf_ptr, int blk_index, off_t num, size_t size, size_t offset, int32_t cksum, int *num_buckets_ptr, int *num_full_ptr, int overwriting);
166
167 #define CHECK_JOURNAL(jnl) \
168 do { \
169 if (jnl == NULL) { \
170 panic("%s:%d: null journal ptr?\n", __FILE__, __LINE__); \
171 } \
172 if (jnl->jdev == NULL) { \
173 panic("%s:%d: jdev is null!\n", __FILE__, __LINE__); \
174 } \
175 if (jnl->fsdev == NULL) { \
176 panic("%s:%d: fsdev is null!\n", __FILE__, __LINE__); \
177 } \
178 if (jnl->jhdr->magic != JOURNAL_HEADER_MAGIC) { \
179 panic("%s:%d: jhdr magic corrupted (0x%x != 0x%x)\n", \
180 __FILE__, __LINE__, jnl->jhdr->magic, JOURNAL_HEADER_MAGIC); \
181 } \
182 if ( jnl->jhdr->start <= 0 \
183 || jnl->jhdr->start > jnl->jhdr->size) { \
184 panic("%s:%d: jhdr start looks bad (0x%llx max size 0x%llx)\n", \
185 __FILE__, __LINE__, jnl->jhdr->start, jnl->jhdr->size); \
186 } \
187 if ( jnl->jhdr->end <= 0 \
188 || jnl->jhdr->end > jnl->jhdr->size) { \
189 panic("%s:%d: jhdr end looks bad (0x%llx max size 0x%llx)\n", \
190 __FILE__, __LINE__, jnl->jhdr->end, jnl->jhdr->size); \
191 } \
192 } while(0)
193
194 #define CHECK_TRANSACTION(tr) \
195 do { \
196 if (tr == NULL) { \
197 panic("%s:%d: null transaction ptr?\n", __FILE__, __LINE__); \
198 } \
199 if (tr->jnl == NULL) { \
200 panic("%s:%d: null tr->jnl ptr?\n", __FILE__, __LINE__); \
201 } \
202 if (tr->blhdr != (block_list_header *)tr->tbuffer) { \
203 panic("%s:%d: blhdr (%p) != tbuffer (%p)\n", __FILE__, __LINE__, tr->blhdr, tr->tbuffer); \
204 } \
205 if (tr->total_bytes < 0) { \
206 panic("%s:%d: tr total_bytes looks bad: %d\n", __FILE__, __LINE__, tr->total_bytes); \
207 } \
208 if (tr->journal_start < 0) { \
209 panic("%s:%d: tr journal start looks bad: 0x%llx\n", __FILE__, __LINE__, tr->journal_start); \
210 } \
211 if (tr->journal_end < 0) { \
212 panic("%s:%d: tr journal end looks bad: 0x%llx\n", __FILE__, __LINE__, tr->journal_end); \
213 } \
214 if (tr->blhdr && (tr->blhdr->max_blocks <= 0 || tr->blhdr->max_blocks > (tr->jnl->jhdr->size/tr->jnl->jhdr->jhdr_size))) { \
215 panic("%s:%d: tr blhdr max_blocks looks bad: %d\n", __FILE__, __LINE__, tr->blhdr->max_blocks); \
216 } \
217 } while(0)
218
219
220
221 //
222 // this isn't a great checksum routine but it will do for now.
223 // we use it to checksum the journal header and the block list
224 // headers that are at the start of each transaction.
225 //
226 static unsigned int
227 calc_checksum(const char *ptr, int len)
228 {
229 int i;
230 unsigned int cksum=0;
231
232 // this is a lame checksum but for now it'll do
233 for(i = 0; i < len; i++, ptr++) {
234 cksum = (cksum << 8) ^ (cksum + *(unsigned char *)ptr);
235 }
236
237 return (~cksum);
238 }
239
240 //
241 // Journal Locking
242 //
243 lck_grp_attr_t * jnl_group_attr;
244 lck_attr_t * jnl_lock_attr;
245 lck_grp_t * jnl_mutex_group;
246
247 void
248 journal_init(void)
249 {
250 jnl_lock_attr = lck_attr_alloc_init();
251 jnl_group_attr = lck_grp_attr_alloc_init();
252 jnl_mutex_group = lck_grp_alloc_init("jnl-mutex", jnl_group_attr);
253 }
254
255 __inline__ void
256 journal_lock(journal *jnl)
257 {
258 lck_mtx_lock(&jnl->jlock);
259 if (jnl->owner) {
260 panic ("jnl: owner is %p, expected NULL\n", jnl->owner);
261 }
262 jnl->owner = current_thread();
263 }
264
265 __inline__ void
266 journal_unlock(journal *jnl)
267 {
268 jnl->owner = NULL;
269 lck_mtx_unlock(&jnl->jlock);
270 }
271
272 static __inline__ void
273 lock_flush(journal *jnl)
274 {
275 lck_mtx_lock(&jnl->flock);
276 }
277
278 static __inline__ void
279 unlock_flush(journal *jnl)
280 {
281 lck_mtx_unlock(&jnl->flock);
282 }
283
284 static __inline__ void
285 lock_oldstart(journal *jnl)
286 {
287 lck_mtx_lock(&jnl->old_start_lock);
288 }
289
290 static __inline__ void
291 unlock_oldstart(journal *jnl)
292 {
293 lck_mtx_unlock(&jnl->old_start_lock);
294 }
295
296
297
298 #define JNL_WRITE 0x0001
299 #define JNL_READ 0x0002
300 #define JNL_HEADER 0x8000
301
302 //
303 // This function sets up a fake buf and passes it directly to the
304 // journal device strategy routine (so that it won't get cached in
305 // the block cache.
306 //
307 // It also handles range checking the i/o so that we don't write
308 // outside the journal boundaries and it will wrap the i/o back
309 // to the beginning if necessary (skipping over the journal header)
310 //
311 static size_t
312 do_journal_io(journal *jnl, off_t *offset, void *data, size_t len, int direction)
313 {
314 int err;
315 off_t curlen = len;
316 size_t io_sz = 0;
317 buf_t bp;
318 off_t max_iosize;
319 bufattr_t bap;
320 boolean_t was_vm_privileged = FALSE;
321 boolean_t need_vm_privilege = FALSE;
322
323 if (vfs_isswapmount(jnl->fsmount))
324 need_vm_privilege = TRUE;
325
326 if (*offset < 0 || *offset > jnl->jhdr->size) {
327 panic("jnl: do_jnl_io: bad offset 0x%llx (max 0x%llx)\n", *offset, jnl->jhdr->size);
328 }
329
330 if (direction & JNL_WRITE)
331 max_iosize = jnl->max_write_size;
332 else if (direction & JNL_READ)
333 max_iosize = jnl->max_read_size;
334 else
335 max_iosize = 128 * 1024;
336
337 again:
338 bp = buf_alloc(jnl->jdev);
339
340 if (*offset + curlen > jnl->jhdr->size && *offset != 0 && jnl->jhdr->size != 0) {
341 if (*offset == jnl->jhdr->size) {
342 *offset = jnl->jhdr->jhdr_size;
343 } else {
344 curlen = jnl->jhdr->size - *offset;
345 }
346 }
347
348 if (curlen > max_iosize) {
349 curlen = max_iosize;
350 }
351
352 if (curlen <= 0) {
353 panic("jnl: do_jnl_io: curlen == %lld, offset 0x%llx len %zd\n", curlen, *offset, len);
354 }
355
356 if (*offset == 0 && (direction & JNL_HEADER) == 0) {
357 panic("jnl: request for i/o to jnl-header without JNL_HEADER flag set! (len %lld, data %p)\n", curlen, data);
358 }
359
360 /*
361 * As alluded to in the block comment at the top of the function, we use a "fake" iobuf
362 * here and issue directly to the disk device that the journal protects since we don't
363 * want this to enter the block cache. As a result, we lose the ability to mark it
364 * as a metadata buf_t for the layers below us that may care. If we were to
365 * simply attach the B_META flag into the b_flags this may confuse things further
366 * since this is an iobuf, not a metadata buffer.
367 *
368 * To address this, we use the extended bufattr struct embedded in the bp.
369 * Explicitly mark the buf here as a metadata buffer in its bufattr flags.
370 */
371 bap = buf_attr(bp);
372 bufattr_markmeta(bap);
373
374 if (direction & JNL_READ)
375 buf_setflags(bp, B_READ);
376 else {
377 /*
378 * don't have to set any flags
379 */
380 vnode_startwrite(jnl->jdev);
381 }
382 buf_setsize(bp, curlen);
383 buf_setcount(bp, curlen);
384 buf_setdataptr(bp, (uintptr_t)data);
385 buf_setblkno(bp, (daddr64_t) ((jnl->jdev_offset + *offset) / (off_t)jnl->jhdr->jhdr_size));
386 buf_setlblkno(bp, (daddr64_t) ((jnl->jdev_offset + *offset) / (off_t)jnl->jhdr->jhdr_size));
387
388 if ((direction & JNL_WRITE) && (jnl->flags & JOURNAL_DO_FUA_WRITES)) {
389 buf_markfua(bp);
390 }
391
392 if (need_vm_privilege == TRUE) {
393 /*
394 * if we block waiting for memory, and there is enough pressure to
395 * cause us to try and create a new swap file, we may end up deadlocking
396 * due to waiting for the journal on the swap file creation path...
397 * by making ourselves vm_privileged, we give ourselves the best chance
398 * of not blocking
399 */
400 was_vm_privileged = set_vm_privilege(TRUE);
401 }
402 DTRACE_IO1(journal__start, buf_t, bp);
403 err = VNOP_STRATEGY(bp);
404 if (!err) {
405 err = (int)buf_biowait(bp);
406 }
407 DTRACE_IO1(journal__done, buf_t, bp);
408
409 if (need_vm_privilege == TRUE && was_vm_privileged == FALSE)
410 set_vm_privilege(FALSE);
411
412 buf_free(bp);
413
414 if (err) {
415 printf("jnl: %s: do_jnl_io: strategy err 0x%x\n", jnl->jdev_name, err);
416 return 0;
417 }
418
419 *offset += curlen;
420 io_sz += curlen;
421
422 if (io_sz != len) {
423 // handle wrap-around
424 data = (char *)data + curlen;
425 curlen = len - io_sz;
426 if (*offset >= jnl->jhdr->size) {
427 *offset = jnl->jhdr->jhdr_size;
428 }
429 goto again;
430 }
431
432 return io_sz;
433 }
434
435 static size_t
436 read_journal_data(journal *jnl, off_t *offset, void *data, size_t len)
437 {
438 return do_journal_io(jnl, offset, data, len, JNL_READ);
439 }
440
441 static size_t
442 write_journal_data(journal *jnl, off_t *offset, void *data, size_t len)
443 {
444 return do_journal_io(jnl, offset, data, len, JNL_WRITE);
445 }
446
447
448 static size_t
449 read_journal_header(journal *jnl, void *data, size_t len)
450 {
451 off_t hdr_offset = 0;
452
453 return do_journal_io(jnl, &hdr_offset, data, len, JNL_READ|JNL_HEADER);
454 }
455
456 static int
457 write_journal_header(journal *jnl, int updating_start, uint32_t sequence_num)
458 {
459 static int num_err_prints = 0;
460 int ret=0;
461 off_t jhdr_offset = 0;
462 //
463 // Flush the track cache if we're not doing force-unit-access
464 // writes.
465 //
466 if (!updating_start && (jnl->flags & JOURNAL_DO_FUA_WRITES) == 0) {
467
468 dk_synchronize_t sync_request = {
469 .options = DK_SYNCHRONIZE_OPTION_BARRIER,
470 };
471
472 /*
473 * If device doesn't support barrier-only flush, or
474 * the journal is on a different device, use full flush.
475 */
476 if (!(jnl->flags & JOURNAL_FEATURE_BARRIER) || (jnl->jdev != jnl->fsdev)) {
477 sync_request.options = 0;
478 jnl->flush_counter++;
479 }
480
481 ret = VNOP_IOCTL(jnl->jdev, DKIOCSYNCHRONIZE, (caddr_t)&sync_request, FWRITE, vfs_context_kernel());
482 }
483 if (ret != 0) {
484 //
485 // Only print this error if it's a different error than the
486 // previous one, or if it's the first time for this device
487 // or if the total number of printfs is less than 25. We
488 // allow for up to 25 printfs to insure that some make it
489 // into the on-disk syslog. Otherwise if we only printed
490 // one, it's possible it would never make it to the syslog
491 // for the root volume and that makes debugging hard.
492 //
493 if ( ret != jnl->last_flush_err
494 || (jnl->flags & JOURNAL_FLUSHCACHE_ERR) == 0
495 || num_err_prints++ < 25) {
496
497 printf("jnl: %s: flushing fs disk buffer returned 0x%x\n", jnl->jdev_name, ret);
498
499 jnl->flags |= JOURNAL_FLUSHCACHE_ERR;
500 jnl->last_flush_err = ret;
501 }
502 }
503
504 jnl->jhdr->sequence_num = sequence_num;
505 jnl->jhdr->checksum = 0;
506 jnl->jhdr->checksum = calc_checksum((char *)jnl->jhdr, JOURNAL_HEADER_CKSUM_SIZE);
507
508 if (do_journal_io(jnl, &jhdr_offset, jnl->header_buf, jnl->jhdr->jhdr_size, JNL_WRITE|JNL_HEADER) != (size_t)jnl->jhdr->jhdr_size) {
509 printf("jnl: %s: write_journal_header: error writing the journal header!\n", jnl->jdev_name);
510 jnl->flags |= JOURNAL_INVALID;
511 return -1;
512 }
513
514 // If we're not doing force-unit-access writes, then we
515 // have to flush after writing the journal header so that
516 // a future transaction doesn't sneak out to disk before
517 // the header does and thus overwrite data that the old
518 // journal header refers to. Saw this exact case happen
519 // on an IDE bus analyzer with Larry Barras so while it
520 // may seem obscure, it's not.
521 //
522 if (updating_start && (jnl->flags & JOURNAL_DO_FUA_WRITES) == 0) {
523
524 dk_synchronize_t sync_request = {
525 .options = DK_SYNCHRONIZE_OPTION_BARRIER,
526 };
527
528 /*
529 * If device doesn't support barrier-only flush, or
530 * the journal is on a different device, use full flush.
531 */
532 if (!(jnl->flags & JOURNAL_FEATURE_BARRIER) || (jnl->jdev != jnl->fsdev)) {
533 sync_request.options = 0;
534 jnl->flush_counter++;
535 }
536
537 VNOP_IOCTL(jnl->jdev, DKIOCSYNCHRONIZE, (caddr_t)&sync_request, FWRITE, vfs_context_kernel());
538 }
539
540 return 0;
541 }
542
543
544
545 //
546 // this is a work function used to free up transactions that
547 // completed. they can't be free'd from buffer_flushed_callback
548 // because it is called from deep with the disk driver stack
549 // and thus can't do something that would potentially cause
550 // paging. it gets called by each of the journal api entry
551 // points so stuff shouldn't hang around for too long.
552 //
553 static void
554 free_old_stuff(journal *jnl)
555 {
556 transaction *tr, *next;
557 block_list_header *blhdr=NULL, *next_blhdr=NULL;
558
559 if (jnl->tr_freeme == NULL)
560 return;
561
562 lock_oldstart(jnl);
563 tr = jnl->tr_freeme;
564 jnl->tr_freeme = NULL;
565 unlock_oldstart(jnl);
566
567 for(; tr; tr=next) {
568 for (blhdr = tr->blhdr; blhdr; blhdr = next_blhdr) {
569 next_blhdr = (block_list_header *)((long)blhdr->binfo[0].bnum);
570 blhdr->binfo[0].bnum = 0xdeadc0de;
571
572 hfs_free(blhdr, tr->tbuffer_size);
573
574 KERNEL_DEBUG(0xbbbbc01c, jnl, tr, tr->tbuffer_size, 0, 0);
575 }
576 next = tr->next;
577 hfs_free(tr, sizeof(*tr));
578 }
579 }
580
581
582
583 //
584 // This is our callback that lets us know when a buffer has been
585 // flushed to disk. It's called from deep within the driver stack
586 // and thus is quite limited in what it can do. Notably, it can
587 // not initiate any new i/o's or allocate/free memory.
588 //
589 static void
590 buffer_flushed_callback(struct buf *bp, void *arg)
591 {
592 transaction *tr;
593 journal *jnl;
594 transaction *ctr, *prev=NULL, *next;
595 size_t i;
596 int bufsize, amt_flushed, total_bytes;
597
598
599 //printf("jnl: buf flush: bp @ 0x%x l/blkno %qd/%qd vp 0x%x tr @ 0x%x\n",
600 // bp, buf_lblkno(bp), buf_blkno(bp), buf_vnode(bp), arg);
601
602 // snarf out the bits we want
603 bufsize = buf_size(bp);
604 tr = (transaction *)arg;
605
606 // then we've already seen it
607 if (tr == NULL) {
608 return;
609 }
610
611 CHECK_TRANSACTION(tr);
612
613 jnl = tr->jnl;
614
615 CHECK_JOURNAL(jnl);
616
617 amt_flushed = tr->num_killed;
618 total_bytes = tr->total_bytes;
619
620 // update the number of blocks that have been flushed.
621 // this buf may represent more than one block so take
622 // that into account.
623 //
624 // OSAddAtomic() returns the value of tr->num_flushed before the add
625 //
626 amt_flushed += OSAddAtomic(bufsize, &tr->num_flushed);
627
628
629 // if this transaction isn't done yet, just return as
630 // there is nothing to do.
631 //
632 // NOTE: we are careful to not reference anything through
633 // the tr pointer after doing the OSAddAtomic(). if
634 // this if statement fails then we are the last one
635 // and then it's ok to dereference "tr".
636 //
637 if ((amt_flushed + bufsize) < total_bytes) {
638 return;
639 }
640
641 // this will single thread checking the transaction
642 lock_oldstart(jnl);
643
644 if (tr->total_bytes == (int)0xfbadc0de) {
645 // then someone beat us to it...
646 unlock_oldstart(jnl);
647 return;
648 }
649
650 // mark this so that we're the owner of dealing with the
651 // cleanup for this transaction
652 tr->total_bytes = 0xfbadc0de;
653
654 if (jnl->flags & JOURNAL_INVALID)
655 goto transaction_done;
656
657 //printf("jnl: tr 0x%x (0x%llx 0x%llx) in jnl 0x%x completed.\n",
658 // tr, tr->journal_start, tr->journal_end, jnl);
659
660 // find this entry in the old_start[] index and mark it completed
661 for(i = 0; i < sizeof(jnl->old_start)/sizeof(jnl->old_start[0]); i++) {
662
663 if ((off_t)(jnl->old_start[i] & ~(0x8000000000000000ULL)) == tr->journal_start) {
664 jnl->old_start[i] &= ~(0x8000000000000000ULL);
665 break;
666 }
667 }
668
669 if (i >= sizeof(jnl->old_start)/sizeof(jnl->old_start[0])) {
670 panic("jnl: buffer_flushed: did not find tr w/start @ %lld (tr %p, jnl %p)\n",
671 tr->journal_start, tr, jnl);
672 }
673
674
675 // if we are here then we need to update the journal header
676 // to reflect that this transaction is complete
677 if (tr->journal_start == jnl->active_start) {
678 jnl->active_start = tr->journal_end;
679 tr->journal_start = tr->journal_end = (off_t)0;
680 }
681
682 // go through the completed_trs list and try to coalesce
683 // entries, restarting back at the beginning if we have to.
684 for (ctr = jnl->completed_trs; ctr; prev=ctr, ctr=next) {
685 if (ctr->journal_start == jnl->active_start) {
686 jnl->active_start = ctr->journal_end;
687 if (prev) {
688 prev->next = ctr->next;
689 }
690 if (ctr == jnl->completed_trs) {
691 jnl->completed_trs = ctr->next;
692 }
693
694 next = jnl->completed_trs; // this starts us over again
695 ctr->next = jnl->tr_freeme;
696 jnl->tr_freeme = ctr;
697 ctr = NULL;
698 } else if (tr->journal_end == ctr->journal_start) {
699 ctr->journal_start = tr->journal_start;
700 next = jnl->completed_trs; // this starts us over again
701 ctr = NULL;
702 tr->journal_start = tr->journal_end = (off_t)0;
703 } else if (tr->journal_start == ctr->journal_end) {
704 ctr->journal_end = tr->journal_end;
705 next = ctr->next;
706 tr->journal_start = tr->journal_end = (off_t)0;
707 } else if (ctr->next && ctr->journal_end == ctr->next->journal_start) {
708 // coalesce the next entry with this one and link the next
709 // entry in at the head of the tr_freeme list
710 next = ctr->next; // temporarily use the "next" variable
711 ctr->journal_end = next->journal_end;
712 ctr->next = next->next;
713 next->next = jnl->tr_freeme; // link in the next guy at the head of the tr_freeme list
714 jnl->tr_freeme = next;
715
716 next = jnl->completed_trs; // this starts us over again
717 ctr = NULL;
718 } else {
719 next = ctr->next;
720 }
721 }
722
723 // if this is true then we didn't merge with anyone
724 // so link ourselves in at the head of the completed
725 // transaction list.
726 if (tr->journal_start != 0) {
727 // put this entry into the correct sorted place
728 // in the list instead of just at the head.
729 //
730
731 prev = NULL;
732 for (ctr = jnl->completed_trs; ctr && tr->journal_start > ctr->journal_start; prev=ctr, ctr=ctr->next) {
733 // just keep looping
734 }
735
736 if (ctr == NULL && prev == NULL) {
737 jnl->completed_trs = tr;
738 tr->next = NULL;
739 } else if (ctr == jnl->completed_trs) {
740 tr->next = jnl->completed_trs;
741 jnl->completed_trs = tr;
742 } else {
743 tr->next = prev->next;
744 prev->next = tr;
745 }
746 } else {
747 // if we're here this tr got merged with someone else so
748 // put it on the list to be free'd
749 tr->next = jnl->tr_freeme;
750 jnl->tr_freeme = tr;
751 }
752 transaction_done:
753 unlock_oldstart(jnl);
754
755 unlock_condition(jnl, &jnl->asyncIO);
756 }
757
758
759 #include <libkern/OSByteOrder.h>
760
761 #define SWAP16(x) OSSwapInt16(x)
762 #define SWAP32(x) OSSwapInt32(x)
763 #define SWAP64(x) OSSwapInt64(x)
764
765
766 static void
767 swap_journal_header(journal *jnl)
768 {
769 jnl->jhdr->magic = SWAP32(jnl->jhdr->magic);
770 jnl->jhdr->endian = SWAP32(jnl->jhdr->endian);
771 jnl->jhdr->start = SWAP64(jnl->jhdr->start);
772 jnl->jhdr->end = SWAP64(jnl->jhdr->end);
773 jnl->jhdr->size = SWAP64(jnl->jhdr->size);
774 jnl->jhdr->blhdr_size = SWAP32(jnl->jhdr->blhdr_size);
775 jnl->jhdr->checksum = SWAP32(jnl->jhdr->checksum);
776 jnl->jhdr->jhdr_size = SWAP32(jnl->jhdr->jhdr_size);
777 jnl->jhdr->sequence_num = SWAP32(jnl->jhdr->sequence_num);
778 }
779
780 static void
781 swap_block_list_header(journal *jnl, block_list_header *blhdr)
782 {
783 int i;
784
785 blhdr->max_blocks = SWAP16(blhdr->max_blocks);
786 blhdr->num_blocks = SWAP16(blhdr->num_blocks);
787 blhdr->bytes_used = SWAP32(blhdr->bytes_used);
788 blhdr->checksum = SWAP32(blhdr->checksum);
789 blhdr->flags = SWAP32(blhdr->flags);
790
791 if (blhdr->num_blocks >= ((jnl->jhdr->blhdr_size / sizeof(block_info)) - 1)) {
792 printf("jnl: %s: blhdr num blocks looks suspicious (%d / blhdr size %d). not swapping.\n", jnl->jdev_name, blhdr->num_blocks, jnl->jhdr->blhdr_size);
793 return;
794 }
795
796 for(i = 0; i < blhdr->num_blocks; i++) {
797 blhdr->binfo[i].bnum = SWAP64(blhdr->binfo[i].bnum);
798 blhdr->binfo[i].u.bi.bsize = SWAP32(blhdr->binfo[i].u.bi.bsize);
799 blhdr->binfo[i].u.bi.b.cksum = SWAP32(blhdr->binfo[i].u.bi.b.cksum);
800 }
801 }
802
803
804 static int
805 update_fs_block(journal *jnl, void *block_ptr, off_t fs_block, size_t bsize)
806 {
807 int ret;
808 struct buf *oblock_bp=NULL;
809 boolean_t was_vm_privileged = FALSE;
810
811
812 // first read the block we want.
813 ret = buf_meta_bread(jnl->fsdev, (daddr64_t)fs_block, bsize, NOCRED, &oblock_bp);
814 if (ret != 0) {
815 printf("jnl: %s: update_fs_block: error reading fs block # %lld! (ret %d)\n", jnl->jdev_name, fs_block, ret);
816
817 if (oblock_bp) {
818 buf_brelse(oblock_bp);
819 oblock_bp = NULL;
820 }
821
822 // let's try to be aggressive here and just re-write the block
823 oblock_bp = buf_getblk(jnl->fsdev, (daddr64_t)fs_block, bsize, 0, 0, BLK_META);
824 if (oblock_bp == NULL) {
825 printf("jnl: %s: update_fs_block: buf_getblk() for %lld failed! failing update.\n", jnl->jdev_name, fs_block);
826 return -1;
827 }
828 }
829
830 // make sure it's the correct size.
831 if (buf_size(oblock_bp) != bsize) {
832 buf_brelse(oblock_bp);
833 return -1;
834 }
835
836 // copy the journal data over top of it
837 memcpy((char *)buf_dataptr(oblock_bp), block_ptr, bsize);
838
839 if (vfs_isswapmount(jnl->fsmount)) {
840 /*
841 * if we block waiting for memory, and there is enough pressure to
842 * cause us to try and create a new swap file, we may end up deadlocking
843 * due to waiting for the journal on the swap file creation path...
844 * by making ourselves vm_privileged, we give ourselves the best chance
845 * of not blocking
846 */
847 was_vm_privileged = set_vm_privilege(TRUE);
848 }
849 ret = VNOP_BWRITE(oblock_bp);
850
851 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
852 set_vm_privilege(FALSE);
853
854 if (ret != 0) {
855 printf("jnl: %s: update_fs_block: failed to update block %lld (ret %d)\n", jnl->jdev_name, fs_block,ret);
856 return ret;
857 }
858 // and now invalidate it so that if someone else wants to read
859 // it in a different size they'll be able to do it.
860 ret = buf_meta_bread(jnl->fsdev, (daddr64_t)fs_block, bsize, NOCRED, &oblock_bp);
861 if (oblock_bp) {
862 buf_markinvalid(oblock_bp);
863 buf_brelse(oblock_bp);
864 }
865
866 return 0;
867 }
868
869 static int
870 grow_table(struct bucket **buf_ptr, int num_buckets, int new_size)
871 {
872 struct bucket *newBuf;
873 int current_size = num_buckets, i;
874
875 // return if newsize is less than the current size
876 if (new_size < num_buckets) {
877 return current_size;
878 }
879
880 newBuf = hfs_malloc(new_size*sizeof(struct bucket));
881
882 // printf("jnl: lookup_bucket: expanded co_buf to %d elems\n", new_size);
883
884 // copy existing elements
885 bcopy(*buf_ptr, newBuf, num_buckets*sizeof(struct bucket));
886
887 // initialize the new ones
888 for(i = num_buckets; i < new_size; i++) {
889 newBuf[i].block_num = (off_t)-1;
890 }
891
892 // free the old container
893 hfs_free(*buf_ptr, num_buckets * sizeof(struct bucket));
894
895 // reset the buf_ptr
896 *buf_ptr = newBuf;
897
898 return new_size;
899 }
900
901 static int
902 lookup_bucket(struct bucket **buf_ptr, off_t block_num, int num_full)
903 {
904 int lo, hi, index, matches, i;
905
906 if (num_full == 0) {
907 return 0; // table is empty, so insert at index=0
908 }
909
910 lo = 0;
911 hi = num_full - 1;
912 index = -1;
913
914 // perform binary search for block_num
915 do {
916 int mid = (hi - lo)/2 + lo;
917 off_t this_num = (*buf_ptr)[mid].block_num;
918
919 if (block_num == this_num) {
920 index = mid;
921 break;
922 }
923
924 if (block_num < this_num) {
925 hi = mid;
926 continue;
927 }
928
929 if (block_num > this_num) {
930 lo = mid + 1;
931 continue;
932 }
933 } while (lo < hi);
934
935 // check if lo and hi converged on the match
936 if (block_num == (*buf_ptr)[hi].block_num) {
937 index = hi;
938 }
939
940 // if no existing entry found, find index for new one
941 if (index == -1) {
942 index = (block_num < (*buf_ptr)[hi].block_num) ? hi : hi + 1;
943 } else {
944 // make sure that we return the right-most index in the case of multiple matches
945 matches = 0;
946 i = index + 1;
947 while (i < num_full && block_num == (*buf_ptr)[i].block_num) {
948 matches++;
949 i++;
950 }
951
952 index += matches;
953 }
954
955 return index;
956 }
957
958 static int
959 insert_block(journal *jnl, struct bucket **buf_ptr, int blk_index, off_t num, size_t size, size_t offset, int32_t cksum, int *num_buckets_ptr, int *num_full_ptr, int overwriting)
960 {
961 if (!overwriting) {
962 // grow the table if we're out of space - we may index the table
963 // with *num_full_ptr (lookup_bucket() can return a maximum value ==
964 // *num_full_ptr), so we need to grow when we hit (*num_buckets_ptr - 1)
965 // to prevent out-of-bounds indexing
966 if (*num_full_ptr >= (*num_buckets_ptr - 1)) {
967 int new_size = *num_buckets_ptr * 2;
968 int grow_size = grow_table(buf_ptr, *num_buckets_ptr, new_size);
969
970 if (grow_size < new_size) {
971 printf("jnl: %s: add_block: grow_table returned an error!\n", jnl->jdev_name);
972 return -1;
973 }
974
975 *num_buckets_ptr = grow_size; //update num_buckets to reflect the new size
976 }
977
978 // if we're not inserting at the end, we need to bcopy
979 if (blk_index != *num_full_ptr) {
980 bcopy( (*buf_ptr)+(blk_index), (*buf_ptr)+(blk_index+1), (*num_full_ptr-blk_index)*sizeof(struct bucket) );
981 }
982
983 (*num_full_ptr)++; // increment only if we're not overwriting
984 }
985
986 // sanity check the values we're about to add
987 if ((off_t)offset >= jnl->jhdr->size) {
988 offset = jnl->jhdr->jhdr_size + (offset - jnl->jhdr->size);
989 }
990 if (size <= 0) {
991 panic("jnl: insert_block: bad size in insert_block (%zd)\n", size);
992 }
993
994 (*buf_ptr)[blk_index].block_num = num;
995 (*buf_ptr)[blk_index].block_size = (uint32_t)size;
996 (*buf_ptr)[blk_index].jnl_offset = (uint32_t)offset;
997 (*buf_ptr)[blk_index].cksum = cksum;
998
999 return blk_index;
1000 }
1001
1002 static int
1003 do_overlap(journal *jnl, struct bucket **buf_ptr, int blk_index, off_t block_num, size_t size, __unused size_t offset, int32_t cksum, int *num_buckets_ptr, int *num_full_ptr)
1004 {
1005 int num_to_remove, index, i, overwrite, err;
1006 size_t jhdr_size = jnl->jhdr->jhdr_size, new_offset;
1007 off_t overlap, block_start, block_end;
1008
1009 block_start = block_num*jhdr_size;
1010 block_end = block_start + size;
1011 overwrite = (block_num == (*buf_ptr)[blk_index].block_num && size >= (*buf_ptr)[blk_index].block_size);
1012
1013 // first, eliminate any overlap with the previous entry
1014 if (blk_index != 0 && !overwrite) {
1015 off_t prev_block_start = (*buf_ptr)[blk_index-1].block_num*jhdr_size;
1016 off_t prev_block_end = prev_block_start + (*buf_ptr)[blk_index-1].block_size;
1017 overlap = prev_block_end - block_start;
1018 if (overlap > 0) {
1019 if (overlap % jhdr_size != 0) {
1020 panic("jnl: do_overlap: overlap with previous entry not a multiple of %zd\n", jhdr_size);
1021 }
1022
1023 // if the previous entry completely overlaps this one, we need to break it into two pieces.
1024 if (prev_block_end > block_end) {
1025 off_t new_num = block_end / jhdr_size;
1026 size_t new_size = prev_block_end - block_end;
1027
1028 new_offset = (*buf_ptr)[blk_index-1].jnl_offset + (block_end - prev_block_start);
1029
1030 err = insert_block(jnl, buf_ptr, blk_index, new_num, new_size, new_offset, cksum, num_buckets_ptr, num_full_ptr, 0);
1031 if (err < 0) {
1032 panic("jnl: do_overlap: error inserting during pre-overlap\n");
1033 }
1034 }
1035
1036 // Regardless, we need to truncate the previous entry to the beginning of the overlap
1037 (*buf_ptr)[blk_index-1].block_size = (uint32_t)(block_start - prev_block_start);
1038 (*buf_ptr)[blk_index-1].cksum = 0; // have to blow it away because there's no way to check it
1039 }
1040 }
1041
1042 // then, bail out fast if there's no overlap with the entries that follow
1043 if (!overwrite && block_end <= (off_t)((*buf_ptr)[blk_index].block_num*jhdr_size)) {
1044 return 0; // no overlap, no overwrite
1045 } else if (overwrite && (blk_index + 1 >= *num_full_ptr || block_end <= (off_t)((*buf_ptr)[blk_index+1].block_num*jhdr_size))) {
1046
1047 (*buf_ptr)[blk_index].cksum = cksum; // update this
1048 return 1; // simple overwrite
1049 }
1050
1051 // Otherwise, find all cases of total and partial overlap. We use the special
1052 // block_num of -2 to designate entries that are completely overlapped and must
1053 // be eliminated. The block_num, size, and jnl_offset of partially overlapped
1054 // entries must be adjusted to keep the array consistent.
1055 index = blk_index;
1056 num_to_remove = 0;
1057 while (index < *num_full_ptr && block_end > (off_t)((*buf_ptr)[index].block_num*jhdr_size)) {
1058 if (block_end >= (off_t)(((*buf_ptr)[index].block_num*jhdr_size + (*buf_ptr)[index].block_size))) {
1059 (*buf_ptr)[index].block_num = -2; // mark this for deletion
1060 num_to_remove++;
1061 } else {
1062 overlap = block_end - (*buf_ptr)[index].block_num*jhdr_size;
1063 if (overlap > 0) {
1064 if (overlap % jhdr_size != 0) {
1065 panic("jnl: do_overlap: overlap of %lld is not multiple of %zd\n", overlap, jhdr_size);
1066 }
1067
1068 // if we partially overlap this entry, adjust its block number, jnl offset, and size
1069 (*buf_ptr)[index].block_num += (overlap / jhdr_size); // make sure overlap is multiple of jhdr_size, or round up
1070 (*buf_ptr)[index].cksum = 0;
1071
1072 new_offset = (*buf_ptr)[index].jnl_offset + overlap; // check for wrap-around
1073 if ((off_t)new_offset >= jnl->jhdr->size) {
1074 new_offset = jhdr_size + (new_offset - jnl->jhdr->size);
1075 }
1076 (*buf_ptr)[index].jnl_offset = (uint32_t)new_offset;
1077
1078 (*buf_ptr)[index].block_size -= overlap; // sanity check for negative value
1079 if ((*buf_ptr)[index].block_size <= 0) {
1080 panic("jnl: do_overlap: after overlap, new block size is invalid (%u)\n", (*buf_ptr)[index].block_size);
1081 // return -1; // if above panic is removed, return -1 for error
1082 }
1083 }
1084
1085 }
1086
1087 index++;
1088 }
1089
1090 // bcopy over any completely overlapped entries, starting at the right (where the above loop broke out)
1091 index--; // start with the last index used within the above loop
1092 while (index >= blk_index) {
1093 if ((*buf_ptr)[index].block_num == -2) {
1094 if (index == *num_full_ptr-1) {
1095 (*buf_ptr)[index].block_num = -1; // it's the last item in the table... just mark as free
1096 } else {
1097 bcopy( (*buf_ptr)+(index+1), (*buf_ptr)+(index), (*num_full_ptr - (index + 1)) * sizeof(struct bucket) );
1098 }
1099 (*num_full_ptr)--;
1100 }
1101 index--;
1102 }
1103
1104 // eliminate any stale entries at the end of the table
1105 for(i = *num_full_ptr; i < (*num_full_ptr + num_to_remove); i++) {
1106 (*buf_ptr)[i].block_num = -1;
1107 }
1108
1109 return 0; // if we got this far, we need to insert the entry into the table (rather than overwrite)
1110 }
1111
1112 // PR-3105942: Coalesce writes to the same block in journal replay
1113 // We coalesce writes by maintaining a dynamic sorted array of physical disk blocks
1114 // to be replayed and the corresponding location in the journal which contains
1115 // the most recent data for those blocks. The array is "played" once the all the
1116 // blocks in the journal have been coalesced. The code for the case of conflicting/
1117 // overlapping writes to a single block is the most dense. Because coalescing can
1118 // disrupt the existing time-ordering of blocks in the journal playback, care
1119 // is taken to catch any overlaps and keep the array consistent.
1120 static int
1121 add_block(journal *jnl, struct bucket **buf_ptr, off_t block_num, size_t size, size_t offset, int32_t cksum, int *num_buckets_ptr, int *num_full_ptr)
1122 {
1123 int blk_index, overwriting;
1124
1125 // on return from lookup_bucket(), blk_index is the index into the table where block_num should be
1126 // inserted (or the index of the elem to overwrite).
1127 blk_index = lookup_bucket( buf_ptr, block_num, *num_full_ptr);
1128
1129 // check if the index is within bounds (if we're adding this block to the end of
1130 // the table, blk_index will be equal to num_full)
1131 if (blk_index < 0 || blk_index > *num_full_ptr) {
1132 //printf("jnl: add_block: trouble adding block to co_buf\n");
1133 return -1;
1134 } // else printf("jnl: add_block: adding block 0x%llx at i=%d\n", block_num, blk_index);
1135
1136 // Determine whether we're overwriting an existing entry by checking for overlap
1137 overwriting = do_overlap(jnl, buf_ptr, blk_index, block_num, size, offset, cksum, num_buckets_ptr, num_full_ptr);
1138 if (overwriting < 0) {
1139 return -1; // if we got an error, pass it along
1140 }
1141
1142 // returns the index, or -1 on error
1143 blk_index = insert_block(jnl, buf_ptr, blk_index, block_num, size, offset, cksum, num_buckets_ptr, num_full_ptr, overwriting);
1144
1145 return blk_index;
1146 }
1147
1148 static int
1149 replay_journal(journal *jnl)
1150 {
1151 int i, bad_blocks=0;
1152 unsigned int orig_checksum, checksum, check_block_checksums = 0;
1153 size_t ret;
1154 size_t max_bsize = 0; /* protected by block_ptr */
1155 block_list_header *blhdr;
1156 off_t offset, txn_start_offset=0, blhdr_offset, orig_jnl_start;
1157 char *buff, *block_ptr=NULL;
1158 struct bucket *co_buf;
1159 int num_buckets = STARTING_BUCKETS, num_full, check_past_jnl_end = 1, in_uncharted_territory=0;
1160 uint32_t last_sequence_num = 0;
1161 int replay_retry_count = 0;
1162
1163 // wrap the start ptr if it points to the very end of the journal
1164 if (jnl->jhdr->start == jnl->jhdr->size) {
1165 jnl->jhdr->start = jnl->jhdr->jhdr_size;
1166 }
1167 if (jnl->jhdr->end == jnl->jhdr->size) {
1168 jnl->jhdr->end = jnl->jhdr->jhdr_size;
1169 }
1170
1171 if (jnl->jhdr->start == jnl->jhdr->end) {
1172 return 0;
1173 }
1174
1175 orig_jnl_start = jnl->jhdr->start;
1176
1177 // allocate memory for the header_block. we'll read each blhdr into this
1178 buff = hfs_malloc(jnl->jhdr->blhdr_size);
1179
1180 // allocate memory for the coalesce buffer
1181 co_buf = hfs_malloc(num_buckets*sizeof(struct bucket));
1182
1183 restart_replay:
1184
1185 // initialize entries
1186 for(i = 0; i < num_buckets; i++) {
1187 co_buf[i].block_num = -1;
1188 }
1189 num_full = 0; // empty at first
1190
1191
1192 printf("jnl: %s: replay_journal: from: %lld to: %lld (joffset 0x%llx)\n",
1193 jnl->jdev_name, jnl->jhdr->start, jnl->jhdr->end, jnl->jdev_offset);
1194
1195 while (check_past_jnl_end || jnl->jhdr->start != jnl->jhdr->end) {
1196 offset = blhdr_offset = jnl->jhdr->start;
1197 ret = read_journal_data(jnl, &offset, buff, jnl->jhdr->blhdr_size);
1198 if (ret != (size_t)jnl->jhdr->blhdr_size) {
1199 printf("jnl: %s: replay_journal: Could not read block list header block @ 0x%llx!\n", jnl->jdev_name, offset);
1200 bad_blocks = 1;
1201 goto bad_txn_handling;
1202 }
1203
1204 blhdr = (block_list_header *)buff;
1205
1206 orig_checksum = blhdr->checksum;
1207 blhdr->checksum = 0;
1208 if (jnl->flags & JOURNAL_NEED_SWAP) {
1209 // calculate the checksum based on the unswapped data
1210 // because it is done byte-at-a-time.
1211 orig_checksum = (unsigned int)SWAP32(orig_checksum);
1212 checksum = calc_checksum((char *)blhdr, BLHDR_CHECKSUM_SIZE);
1213 swap_block_list_header(jnl, blhdr);
1214 } else {
1215 checksum = calc_checksum((char *)blhdr, BLHDR_CHECKSUM_SIZE);
1216 }
1217
1218
1219 //
1220 // XXXdbg - if these checks fail, we should replay as much
1221 // we can in the hopes that it will still leave the
1222 // drive in a better state than if we didn't replay
1223 // anything
1224 //
1225 if (checksum != orig_checksum) {
1226 if (check_past_jnl_end && in_uncharted_territory) {
1227
1228 if (blhdr_offset != jnl->jhdr->end) {
1229 printf("jnl: %s: Extra txn replay stopped @ %lld / 0x%llx\n", jnl->jdev_name, blhdr_offset, blhdr_offset);
1230 }
1231
1232 check_past_jnl_end = 0;
1233 jnl->jhdr->end = blhdr_offset;
1234 continue;
1235 }
1236
1237 printf("jnl: %s: replay_journal: bad block list header @ 0x%llx (checksum 0x%x != 0x%x)\n",
1238 jnl->jdev_name, blhdr_offset, orig_checksum, checksum);
1239
1240 if (blhdr_offset == orig_jnl_start) {
1241 // if there's nothing in the journal at all, just bail out altogether.
1242 goto bad_replay;
1243 }
1244
1245 bad_blocks = 1;
1246 goto bad_txn_handling;
1247 }
1248
1249 if ( (last_sequence_num != 0)
1250 && (blhdr->binfo[0].u.bi.b.sequence_num != 0)
1251 && (blhdr->binfo[0].u.bi.b.sequence_num != last_sequence_num)
1252 && (blhdr->binfo[0].u.bi.b.sequence_num != last_sequence_num+1)) {
1253
1254 txn_start_offset = jnl->jhdr->end = blhdr_offset;
1255
1256 if (check_past_jnl_end) {
1257 check_past_jnl_end = 0;
1258 printf("jnl: %s: 2: extra replay stopped @ %lld / 0x%llx (seq %d < %d)\n",
1259 jnl->jdev_name, blhdr_offset, blhdr_offset, blhdr->binfo[0].u.bi.b.sequence_num, last_sequence_num);
1260 continue;
1261 }
1262
1263 printf("jnl: %s: txn sequence numbers out of order in txn @ %lld / %llx! (%d < %d)\n",
1264 jnl->jdev_name, blhdr_offset, blhdr_offset, blhdr->binfo[0].u.bi.b.sequence_num, last_sequence_num);
1265 bad_blocks = 1;
1266 goto bad_txn_handling;
1267 }
1268 last_sequence_num = blhdr->binfo[0].u.bi.b.sequence_num;
1269
1270 if (blhdr_offset >= jnl->jhdr->end && jnl->jhdr->start <= jnl->jhdr->end) {
1271 if (last_sequence_num == 0) {
1272 check_past_jnl_end = 0;
1273 printf("jnl: %s: pre-sequence-num-enabled txn's - can not go further than end (%lld %lld).\n",
1274 jnl->jdev_name, jnl->jhdr->start, jnl->jhdr->end);
1275 if (jnl->jhdr->start != jnl->jhdr->end) {
1276 jnl->jhdr->start = jnl->jhdr->end;
1277 }
1278 continue;
1279 }
1280 printf("jnl: %s: examining extra transactions starting @ %lld / 0x%llx\n", jnl->jdev_name, blhdr_offset, blhdr_offset);
1281 }
1282
1283 if ( blhdr->max_blocks <= 0 || blhdr->max_blocks > (jnl->jhdr->size/jnl->jhdr->jhdr_size)
1284 || blhdr->num_blocks <= 0 || blhdr->num_blocks > blhdr->max_blocks) {
1285 printf("jnl: %s: replay_journal: bad looking journal entry: max: %d num: %d\n",
1286 jnl->jdev_name, blhdr->max_blocks, blhdr->num_blocks);
1287 bad_blocks = 1;
1288 goto bad_txn_handling;
1289 }
1290
1291 max_bsize = 0;
1292 for (i = 1; i < blhdr->num_blocks; i++) {
1293 if (blhdr->binfo[i].bnum < 0 && blhdr->binfo[i].bnum != (off_t)-1) {
1294 printf("jnl: %s: replay_journal: bogus block number 0x%llx\n", jnl->jdev_name, blhdr->binfo[i].bnum);
1295 bad_blocks = 1;
1296 goto bad_txn_handling;
1297 }
1298
1299 if ((size_t)blhdr->binfo[i].u.bi.bsize > max_bsize) {
1300 max_bsize = blhdr->binfo[i].u.bi.bsize;
1301 }
1302 }
1303
1304 if (blhdr->flags & BLHDR_CHECK_CHECKSUMS) {
1305 check_block_checksums = 1;
1306 block_ptr = hfs_malloc(max_bsize);
1307 } else {
1308 block_ptr = NULL;
1309 }
1310
1311 if (blhdr->flags & BLHDR_FIRST_HEADER) {
1312 txn_start_offset = blhdr_offset;
1313 }
1314
1315 //printf("jnl: replay_journal: adding %d blocks in journal entry @ 0x%llx to co_buf\n",
1316 // blhdr->num_blocks-1, jnl->jhdr->start);
1317 bad_blocks = 0;
1318 for (i = 1; i < blhdr->num_blocks; i++) {
1319 int size, ret_val;
1320 off_t number;
1321
1322 size = blhdr->binfo[i].u.bi.bsize;
1323 number = blhdr->binfo[i].bnum;
1324
1325 // don't add "killed" blocks
1326 if (number == (off_t)-1) {
1327 //printf("jnl: replay_journal: skipping killed fs block (index %d)\n", i);
1328 } else {
1329
1330 if (check_block_checksums) {
1331 int32_t disk_cksum;
1332 off_t block_offset;
1333
1334 block_offset = offset;
1335
1336 // read the block so we can check the checksum
1337 ret = read_journal_data(jnl, &block_offset, block_ptr, size);
1338 if (ret != (size_t)size) {
1339 printf("jnl: %s: replay_journal: Could not read journal entry data @ offset 0x%llx!\n", jnl->jdev_name, offset);
1340 bad_blocks = 1;
1341 goto bad_txn_handling;
1342 }
1343
1344 disk_cksum = calc_checksum(block_ptr, size);
1345
1346 // there is no need to swap the checksum from disk because
1347 // it got swapped when the blhdr was read in.
1348 if (blhdr->binfo[i].u.bi.b.cksum != 0 && disk_cksum != blhdr->binfo[i].u.bi.b.cksum) {
1349 printf("jnl: %s: txn starting at %lld (%lld) @ index %3d bnum %lld (%d) with disk cksum != blhdr cksum (0x%.8x 0x%.8x)\n",
1350 jnl->jdev_name, txn_start_offset, blhdr_offset, i, number, size, disk_cksum, blhdr->binfo[i].u.bi.b.cksum);
1351 printf("jnl: 0x%.8x 0x%.8x 0x%.8x 0x%.8x 0x%.8x 0x%.8x 0x%.8x 0x%.8x\n",
1352 *(int *)&block_ptr[0*sizeof(int)], *(int *)&block_ptr[1*sizeof(int)], *(int *)&block_ptr[2*sizeof(int)], *(int *)&block_ptr[3*sizeof(int)],
1353 *(int *)&block_ptr[4*sizeof(int)], *(int *)&block_ptr[5*sizeof(int)], *(int *)&block_ptr[6*sizeof(int)], *(int *)&block_ptr[7*sizeof(int)]);
1354
1355 bad_blocks = 1;
1356 goto bad_txn_handling;
1357 }
1358 }
1359
1360
1361 // add this bucket to co_buf, coalescing where possible
1362 // printf("jnl: replay_journal: adding block 0x%llx\n", number);
1363 ret_val = add_block(jnl, &co_buf, number, size, (size_t) offset, blhdr->binfo[i].u.bi.b.cksum, &num_buckets, &num_full);
1364
1365 if (ret_val == -1) {
1366 printf("jnl: %s: replay_journal: trouble adding block to co_buf\n", jnl->jdev_name);
1367 goto bad_replay;
1368 } // else printf("jnl: replay_journal: added block 0x%llx at i=%d\n", number);
1369 }
1370
1371 // increment offset
1372 offset += size;
1373
1374 // check if the last block added puts us off the end of the jnl.
1375 // if so, we need to wrap to the beginning and take any remainder
1376 // into account
1377 //
1378 if (offset >= jnl->jhdr->size) {
1379 offset = jnl->jhdr->jhdr_size + (offset - jnl->jhdr->size);
1380 }
1381 }
1382
1383 if (block_ptr) {
1384 hfs_free(block_ptr, max_bsize);
1385 block_ptr = NULL;
1386 }
1387
1388 if (bad_blocks) {
1389 bad_txn_handling:
1390 /* Journal replay got error before it found any valid
1391 * transations, abort replay */
1392 if (txn_start_offset == 0) {
1393 printf("jnl: %s: no known good txn start offset! aborting journal replay.\n", jnl->jdev_name);
1394 goto bad_replay;
1395 }
1396
1397 /* Repeated error during journal replay, abort replay */
1398 if (replay_retry_count == 3) {
1399 printf("jnl: %s: repeated errors replaying journal! aborting journal replay.\n", jnl->jdev_name);
1400 goto bad_replay;
1401 }
1402 replay_retry_count++;
1403
1404 /* There was an error replaying the journal (possibly
1405 * EIO/ENXIO from the device). So retry replaying all
1406 * the good transactions that we found before getting
1407 * the error.
1408 */
1409 jnl->jhdr->start = orig_jnl_start;
1410 jnl->jhdr->end = txn_start_offset;
1411 check_past_jnl_end = 0;
1412 last_sequence_num = 0;
1413 printf("jnl: %s: restarting journal replay (%lld - %lld)!\n", jnl->jdev_name, jnl->jhdr->start, jnl->jhdr->end);
1414 goto restart_replay;
1415 }
1416
1417 jnl->jhdr->start += blhdr->bytes_used;
1418 if (jnl->jhdr->start >= jnl->jhdr->size) {
1419 // wrap around and skip the journal header block
1420 jnl->jhdr->start = (jnl->jhdr->start % jnl->jhdr->size) + jnl->jhdr->jhdr_size;
1421 }
1422
1423 if (jnl->jhdr->start == jnl->jhdr->end) {
1424 in_uncharted_territory = 1;
1425 }
1426 }
1427
1428 if (jnl->jhdr->start != jnl->jhdr->end) {
1429 printf("jnl: %s: start %lld != end %lld. resetting end.\n", jnl->jdev_name, jnl->jhdr->start, jnl->jhdr->end);
1430 jnl->jhdr->end = jnl->jhdr->start;
1431 }
1432
1433 //printf("jnl: replay_journal: replaying %d blocks\n", num_full);
1434
1435 /*
1436 * make sure it's at least one page in size, so
1437 * start max_bsize at PAGE_SIZE
1438 */
1439 for (i = 0, max_bsize = PAGE_SIZE; i < num_full; i++) {
1440
1441 if (co_buf[i].block_num == (off_t)-1)
1442 continue;
1443
1444 if (co_buf[i].block_size > max_bsize)
1445 max_bsize = co_buf[i].block_size;
1446 }
1447 /*
1448 * round max_bsize up to the nearest PAGE_SIZE multiple
1449 */
1450 if (max_bsize & (PAGE_SIZE - 1)) {
1451 max_bsize = (max_bsize + PAGE_SIZE) & ~(PAGE_SIZE - 1);
1452 }
1453
1454 block_ptr = hfs_malloc(max_bsize);
1455
1456 // Replay the coalesced entries in the co-buf
1457 for(i = 0; i < num_full; i++) {
1458 size_t size = co_buf[i].block_size;
1459 off_t jnl_offset = (off_t) co_buf[i].jnl_offset;
1460 off_t number = co_buf[i].block_num;
1461
1462
1463 // printf("replaying co_buf[%d]: block 0x%llx, size 0x%x, jnl_offset 0x%llx\n", i, co_buf[i].block_num,
1464 // co_buf[i].block_size, co_buf[i].jnl_offset);
1465
1466 if (number == (off_t)-1) {
1467 // printf("jnl: replay_journal: skipping killed fs block\n");
1468 } else {
1469
1470 // do journal read, and set the phys. block
1471 ret = read_journal_data(jnl, &jnl_offset, block_ptr, size);
1472 if (ret != size) {
1473 printf("jnl: %s: replay_journal: Could not read journal entry data @ offset 0x%llx!\n", jnl->jdev_name, jnl_offset);
1474 goto bad_replay;
1475 }
1476
1477 if (update_fs_block(jnl, block_ptr, number, size) != 0) {
1478 goto bad_replay;
1479 }
1480 }
1481 }
1482
1483
1484 // done replaying; update jnl header
1485 if (write_journal_header(jnl, 1, jnl->jhdr->sequence_num) != 0) {
1486 goto bad_replay;
1487 }
1488
1489 printf("jnl: %s: journal replay done.\n", jnl->jdev_name);
1490
1491 // free block_ptr
1492 if (block_ptr) {
1493 hfs_free(block_ptr, max_bsize);
1494 block_ptr = NULL;
1495 }
1496
1497 // free the coalesce buffer
1498 hfs_free(co_buf, num_buckets*sizeof(struct bucket));
1499 co_buf = NULL;
1500
1501 hfs_free(buff, jnl->jhdr->blhdr_size);
1502 return 0;
1503
1504 bad_replay:
1505 hfs_free(block_ptr, max_bsize);
1506 hfs_free(co_buf, num_buckets*sizeof(struct bucket));
1507 hfs_free(buff, jnl->jhdr->blhdr_size);
1508
1509 return -1;
1510 }
1511
1512
1513 #define DEFAULT_TRANSACTION_BUFFER_SIZE (128*1024)
1514 #define MAX_TRANSACTION_BUFFER_SIZE (3072*1024)
1515
1516 // XXXdbg - so I can change it in the debugger
1517 int def_tbuffer_size = 0;
1518
1519
1520 //
1521 // This function sets the size of the tbuffer and the
1522 // size of the blhdr. It assumes that jnl->jhdr->size
1523 // and jnl->jhdr->jhdr_size are already valid.
1524 //
1525 static void
1526 size_up_tbuffer(journal *jnl, int tbuffer_size, int phys_blksz)
1527 {
1528 //
1529 // one-time initialization based on how much memory
1530 // there is in the machine.
1531 //
1532 if (def_tbuffer_size == 0) {
1533 uint64_t memsize = 0;
1534 size_t l = sizeof(memsize);
1535 sysctlbyname("hw.memsize", &memsize, &l, NULL, 0);
1536
1537 if (memsize < (256*1024*1024)) {
1538 def_tbuffer_size = DEFAULT_TRANSACTION_BUFFER_SIZE;
1539 } else if (memsize < (512*1024*1024)) {
1540 def_tbuffer_size = DEFAULT_TRANSACTION_BUFFER_SIZE * 2;
1541 } else if (memsize < (1024*1024*1024)) {
1542 def_tbuffer_size = DEFAULT_TRANSACTION_BUFFER_SIZE * 3;
1543 } else {
1544 def_tbuffer_size = DEFAULT_TRANSACTION_BUFFER_SIZE * (memsize / (256*1024*1024));
1545 }
1546 }
1547
1548 // For analyzer
1549 hfs_assert(jnl->jhdr->jhdr_size > 0);
1550
1551 // size up the transaction buffer... can't be larger than the number
1552 // of blocks that can fit in a block_list_header block.
1553 if (tbuffer_size == 0) {
1554 jnl->tbuffer_size = def_tbuffer_size;
1555 } else {
1556 // make sure that the specified tbuffer_size isn't too small
1557 if (tbuffer_size < jnl->jhdr->blhdr_size * 2) {
1558 tbuffer_size = jnl->jhdr->blhdr_size * 2;
1559 }
1560 // and make sure it's an even multiple of the block size
1561 if ((tbuffer_size % jnl->jhdr->jhdr_size) != 0) {
1562 tbuffer_size -= (tbuffer_size % jnl->jhdr->jhdr_size);
1563 }
1564
1565 jnl->tbuffer_size = tbuffer_size;
1566 }
1567
1568 if (jnl->tbuffer_size > (jnl->jhdr->size / 2)) {
1569 jnl->tbuffer_size = (jnl->jhdr->size / 2);
1570 }
1571
1572 if (jnl->tbuffer_size > MAX_TRANSACTION_BUFFER_SIZE) {
1573 jnl->tbuffer_size = MAX_TRANSACTION_BUFFER_SIZE;
1574 }
1575
1576 jnl->jhdr->blhdr_size = (jnl->tbuffer_size / jnl->jhdr->jhdr_size) * sizeof(block_info);
1577 if (jnl->jhdr->blhdr_size < phys_blksz) {
1578 jnl->jhdr->blhdr_size = phys_blksz;
1579 } else if ((jnl->jhdr->blhdr_size % phys_blksz) != 0) {
1580 // have to round up so we're an even multiple of the physical block size
1581 jnl->jhdr->blhdr_size = (jnl->jhdr->blhdr_size + (phys_blksz - 1)) & ~(phys_blksz - 1);
1582 }
1583 }
1584
1585 static void
1586 get_io_info(struct vnode *devvp, size_t phys_blksz, journal *jnl, struct vfs_context *context)
1587 {
1588 off_t readblockcnt;
1589 off_t writeblockcnt;
1590 off_t readmaxcnt=0, tmp_readmaxcnt;
1591 off_t writemaxcnt=0, tmp_writemaxcnt;
1592 off_t readsegcnt, writesegcnt;
1593 int32_t features;
1594
1595 if (VNOP_IOCTL(devvp, DKIOCGETFEATURES, (caddr_t)&features, 0, context) == 0) {
1596 if (features & DK_FEATURE_FORCE_UNIT_ACCESS) {
1597 const char *name = vnode_getname_printable(devvp);
1598 jnl->flags |= JOURNAL_DO_FUA_WRITES;
1599 printf("jnl: %s: enabling FUA writes (features 0x%x)\n", name, features);
1600 vnode_putname_printable(name);
1601 }
1602 if (features & DK_FEATURE_UNMAP) {
1603 jnl->flags |= JOURNAL_USE_UNMAP;
1604 }
1605
1606 if (features & DK_FEATURE_BARRIER) {
1607 jnl->flags |= JOURNAL_FEATURE_BARRIER;
1608 }
1609 }
1610
1611 //
1612 // First check the max read size via several different mechanisms...
1613 //
1614 VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTREAD, (caddr_t)&readmaxcnt, 0, context);
1615
1616 if (VNOP_IOCTL(devvp, DKIOCGETMAXBLOCKCOUNTREAD, (caddr_t)&readblockcnt, 0, context) == 0) {
1617 tmp_readmaxcnt = readblockcnt * phys_blksz;
1618 if (readmaxcnt == 0 || (readblockcnt > 0 && tmp_readmaxcnt < readmaxcnt)) {
1619 readmaxcnt = tmp_readmaxcnt;
1620 }
1621 }
1622
1623 if (VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTCOUNTREAD, (caddr_t)&readsegcnt, 0, context)) {
1624 readsegcnt = 0;
1625 }
1626
1627 if (readsegcnt > 0 && (readsegcnt * PAGE_SIZE) < readmaxcnt) {
1628 readmaxcnt = readsegcnt * PAGE_SIZE;
1629 }
1630
1631 if (readmaxcnt == 0) {
1632 readmaxcnt = 128 * 1024;
1633 } else if (readmaxcnt > UINT32_MAX) {
1634 readmaxcnt = UINT32_MAX;
1635 }
1636
1637
1638 //
1639 // Now check the max writes size via several different mechanisms...
1640 //
1641 VNOP_IOCTL(devvp, DKIOCGETMAXBYTECOUNTWRITE, (caddr_t)&writemaxcnt, 0, context);
1642
1643 if (VNOP_IOCTL(devvp, DKIOCGETMAXBLOCKCOUNTWRITE, (caddr_t)&writeblockcnt, 0, context) == 0) {
1644 tmp_writemaxcnt = writeblockcnt * phys_blksz;
1645 if (writemaxcnt == 0 || (writeblockcnt > 0 && tmp_writemaxcnt < writemaxcnt)) {
1646 writemaxcnt = tmp_writemaxcnt;
1647 }
1648 }
1649
1650 if (VNOP_IOCTL(devvp, DKIOCGETMAXSEGMENTCOUNTWRITE, (caddr_t)&writesegcnt, 0, context)) {
1651 writesegcnt = 0;
1652 }
1653
1654 if (writesegcnt > 0 && (writesegcnt * PAGE_SIZE) < writemaxcnt) {
1655 writemaxcnt = writesegcnt * PAGE_SIZE;
1656 }
1657
1658 if (writemaxcnt == 0) {
1659 writemaxcnt = 128 * 1024;
1660 } else if (writemaxcnt > UINT32_MAX) {
1661 writemaxcnt = UINT32_MAX;
1662 }
1663
1664 jnl->max_read_size = readmaxcnt;
1665 jnl->max_write_size = writemaxcnt;
1666 // printf("jnl: %s: max read/write: %lld k / %lld k\n",
1667 // jnl->jdev_name ? jnl->jdev_name : "unknown",
1668 // jnl->max_read_size/1024, jnl->max_write_size/1024);
1669 }
1670
1671
1672 journal *
1673 journal_create(struct vnode *jvp,
1674 off_t offset,
1675 off_t journal_size,
1676 struct vnode *fsvp,
1677 size_t min_fs_blksz,
1678 int32_t flags,
1679 int32_t tbuffer_size,
1680 void (*flush)(void *arg),
1681 void *arg,
1682 struct mount *fsmount)
1683 {
1684 journal *jnl;
1685 uint32_t phys_blksz, new_txn_base;
1686 u_int32_t min_size;
1687 const char *jdev_name;
1688 /*
1689 * Cap the journal max size to 2GB. On HFS, it will attempt to occupy
1690 * a full allocation block if the current size is smaller than the allocation
1691 * block on which it resides. Once we hit the exabyte filesystem range, then
1692 * it will use 2GB allocation blocks. As a result, make the cap 2GB.
1693 */
1694
1695 jdev_name = vnode_getname_printable(jvp);
1696
1697 /* Get the real physical block size. */
1698 if (VNOP_IOCTL(jvp, DKIOCGETBLOCKSIZE, (caddr_t)&phys_blksz, 0, vfs_context_kernel())) {
1699 goto cleanup_jdev_name;
1700 }
1701
1702 if (journal_size < (256*1024) || journal_size > (MAX_JOURNAL_SIZE)) {
1703 printf("jnl: %s: create: journal size %lld looks bogus.\n", jdev_name, journal_size);
1704 goto cleanup_jdev_name;
1705 }
1706
1707 min_size = phys_blksz * (phys_blksz / sizeof(block_info));
1708 /* Reject journals that are too small given the sector size of the device */
1709 if (journal_size < min_size) {
1710 printf("jnl: %s: create: journal size (%lld) too small given sector size of (%u)\n",
1711 jdev_name, journal_size, phys_blksz);
1712 goto cleanup_jdev_name;
1713 }
1714
1715 if (phys_blksz > min_fs_blksz) {
1716 printf("jnl: %s: create: error: phys blksize %u bigger than min fs blksize %zd\n",
1717 jdev_name, phys_blksz, min_fs_blksz);
1718 goto cleanup_jdev_name;
1719 }
1720
1721 if ((journal_size % phys_blksz) != 0) {
1722 printf("jnl: %s: create: journal size 0x%llx is not an even multiple of block size 0x%ux\n",
1723 jdev_name, journal_size, phys_blksz);
1724 goto cleanup_jdev_name;
1725 }
1726
1727
1728 jnl = hfs_mallocz(sizeof(struct journal));
1729
1730 jnl->jdev = jvp;
1731 jnl->jdev_offset = offset;
1732 jnl->fsdev = fsvp;
1733 jnl->flush = flush;
1734 jnl->flush_arg = arg;
1735 jnl->flags = (flags & JOURNAL_OPTION_FLAGS_MASK);
1736 jnl->jdev_name = jdev_name;
1737 lck_mtx_init(&jnl->old_start_lock, jnl_mutex_group, jnl_lock_attr);
1738
1739 // Keep a point to the mount around for use in IO throttling.
1740 jnl->fsmount = fsmount;
1741
1742 get_io_info(jvp, phys_blksz, jnl, vfs_context_kernel());
1743
1744 jnl->header_buf = hfs_malloc(phys_blksz);
1745 jnl->header_buf_size = phys_blksz;
1746
1747 jnl->jhdr = (journal_header *)jnl->header_buf;
1748 memset(jnl->jhdr, 0, sizeof(journal_header));
1749
1750 // we have to set this up here so that do_journal_io() will work
1751 jnl->jhdr->jhdr_size = phys_blksz;
1752
1753 //
1754 // We try and read the journal header to see if there is already one
1755 // out there. If there is, it's possible that it has transactions
1756 // in it that we might replay if we happen to pick a sequence number
1757 // that is a little less than the old one, there is a crash and the
1758 // last txn written ends right at the start of a txn from the previous
1759 // incarnation of this file system. If all that happens we would
1760 // replay the transactions from the old file system and that would
1761 // destroy your disk. Although it is extremely unlikely for all those
1762 // conditions to happen, the probability is non-zero and the result is
1763 // severe - you lose your file system. Therefore if we find a valid
1764 // journal header and the sequence number is non-zero we write junk
1765 // over the entire journal so that there is no way we will encounter
1766 // any old transactions. This is slow but should be a rare event
1767 // since most tools erase the journal.
1768 //
1769 if ( read_journal_header(jnl, jnl->jhdr, phys_blksz) == phys_blksz
1770 && jnl->jhdr->magic == JOURNAL_HEADER_MAGIC
1771 && jnl->jhdr->sequence_num != 0) {
1772
1773 new_txn_base = (jnl->jhdr->sequence_num + (journal_size / phys_blksz) + (random() % 16384)) & 0x00ffffff;
1774 printf("jnl: %s: create: avoiding old sequence number 0x%x (0x%x)\n", jdev_name, jnl->jhdr->sequence_num, new_txn_base);
1775
1776 #if 0
1777 int i;
1778 off_t pos=0;
1779
1780 for(i = 1; i < journal_size / phys_blksz; i++) {
1781 pos = i*phys_blksz;
1782
1783 // we don't really care what data we write just so long
1784 // as it's not a valid transaction header. since we have
1785 // the header_buf sitting around we'll use that.
1786 write_journal_data(jnl, &pos, jnl->header_buf, phys_blksz);
1787 }
1788 printf("jnl: create: done clearing journal (i=%d)\n", i);
1789 #endif
1790 } else {
1791 new_txn_base = random() & 0x00ffffff;
1792 }
1793
1794 memset(jnl->header_buf, 0, phys_blksz);
1795
1796 jnl->jhdr->magic = JOURNAL_HEADER_MAGIC;
1797 jnl->jhdr->endian = ENDIAN_MAGIC;
1798 jnl->jhdr->start = phys_blksz; // start at block #1, block #0 is for the jhdr itself
1799 jnl->jhdr->end = phys_blksz;
1800 jnl->jhdr->size = journal_size;
1801 jnl->jhdr->jhdr_size = phys_blksz;
1802 size_up_tbuffer(jnl, tbuffer_size, phys_blksz);
1803
1804 jnl->active_start = jnl->jhdr->start;
1805
1806 // XXXdbg - for testing you can force the journal to wrap around
1807 // jnl->jhdr->start = jnl->jhdr->size - (phys_blksz*3);
1808 // jnl->jhdr->end = jnl->jhdr->size - (phys_blksz*3);
1809
1810 jnl->jhdr->sequence_num = new_txn_base;
1811
1812 lck_mtx_init(&jnl->jlock, jnl_mutex_group, jnl_lock_attr);
1813 lck_mtx_init(&jnl->flock, jnl_mutex_group, jnl_lock_attr);
1814 lck_rw_init(&jnl->trim_lock, jnl_mutex_group, jnl_lock_attr);
1815
1816
1817 jnl->flushing = FALSE;
1818 jnl->asyncIO = FALSE;
1819 jnl->flush_aborted = FALSE;
1820 jnl->writing_header = FALSE;
1821 jnl->async_trim = NULL;
1822 jnl->sequence_num = jnl->jhdr->sequence_num;
1823
1824 if (write_journal_header(jnl, 1, jnl->jhdr->sequence_num) != 0) {
1825 printf("jnl: %s: journal_create: failed to write journal header.\n", jdev_name);
1826 goto bad_write;
1827 }
1828
1829 goto journal_create_complete;
1830
1831
1832 bad_write:
1833 hfs_free(jnl->header_buf, phys_blksz);
1834 jnl->jhdr = NULL;
1835 hfs_free(jnl, sizeof(*jnl));
1836 cleanup_jdev_name:
1837 vnode_putname_printable(jdev_name);
1838 jnl = NULL;
1839 journal_create_complete:
1840 return jnl;
1841 }
1842
1843
1844 journal *
1845 journal_open(struct vnode *jvp,
1846 off_t offset,
1847 off_t journal_size,
1848 struct vnode *fsvp,
1849 size_t min_fs_blksz,
1850 int32_t flags,
1851 int32_t tbuffer_size,
1852 void (*flush)(void *arg),
1853 void *arg,
1854 struct mount *fsmount)
1855 {
1856 journal *jnl;
1857 uint32_t orig_blksz=0;
1858 uint32_t phys_blksz;
1859 u_int32_t min_size = 0;
1860 int orig_checksum, checksum;
1861 const char *jdev_name = vnode_getname_printable(jvp);
1862
1863 /* Get the real physical block size. */
1864 if (VNOP_IOCTL(jvp, DKIOCGETBLOCKSIZE, (caddr_t)&phys_blksz, 0, vfs_context_kernel())) {
1865 goto cleanup_jdev_name;
1866 }
1867
1868 if (phys_blksz > min_fs_blksz) {
1869 printf("jnl: %s: open: error: phys blksize %u bigger than min fs blksize %zd\n",
1870 jdev_name, phys_blksz, min_fs_blksz);
1871 goto cleanup_jdev_name;
1872 }
1873
1874 if (journal_size < (256*1024) || journal_size > (1024*1024*1024)) {
1875 printf("jnl: %s: open: journal size %lld looks bogus.\n", jdev_name, journal_size);
1876 goto cleanup_jdev_name;
1877 }
1878
1879 min_size = phys_blksz * (phys_blksz / sizeof(block_info));
1880 /* Reject journals that are too small given the sector size of the device */
1881 if (journal_size < min_size) {
1882 printf("jnl: %s: open: journal size (%lld) too small given sector size of (%u)\n",
1883 jdev_name, journal_size, phys_blksz);
1884 goto cleanup_jdev_name;
1885 }
1886
1887 if ((journal_size % phys_blksz) != 0) {
1888 printf("jnl: %s: open: journal size 0x%llx is not an even multiple of block size 0x%x\n",
1889 jdev_name, journal_size, phys_blksz);
1890 goto cleanup_jdev_name;
1891 }
1892
1893 jnl = hfs_mallocz(sizeof(struct journal));
1894
1895 jnl->jdev = jvp;
1896 jnl->jdev_offset = offset;
1897 jnl->fsdev = fsvp;
1898 jnl->flush = flush;
1899 jnl->flush_arg = arg;
1900 jnl->flags = (flags & JOURNAL_OPTION_FLAGS_MASK);
1901 jnl->jdev_name = jdev_name;
1902 lck_mtx_init(&jnl->old_start_lock, jnl_mutex_group, jnl_lock_attr);
1903
1904 /* We hold the mount to later pass to the throttling code for IO
1905 * accounting.
1906 */
1907 jnl->fsmount = fsmount;
1908
1909 get_io_info(jvp, phys_blksz, jnl, vfs_context_kernel());
1910
1911 jnl->header_buf = hfs_malloc(phys_blksz);
1912 jnl->header_buf_size = phys_blksz;
1913
1914 jnl->jhdr = (journal_header *)jnl->header_buf;
1915 memset(jnl->jhdr, 0, sizeof(journal_header));
1916
1917 // we have to set this up here so that do_journal_io() will work
1918 jnl->jhdr->jhdr_size = phys_blksz;
1919
1920 if (read_journal_header(jnl, jnl->jhdr, phys_blksz) != phys_blksz) {
1921 printf("jnl: %s: open: could not read %u bytes for the journal header.\n",
1922 jdev_name, phys_blksz);
1923 goto bad_journal;
1924 }
1925
1926 /*
1927 * Check for a bad jhdr size after reading in the journal header.
1928 * The journal header length cannot be zero
1929 */
1930 if (jnl->jhdr->jhdr_size == 0) {
1931 printf("jnl: %s: open: bad jhdr size (%d) \n", jdev_name, jnl->jhdr->jhdr_size);
1932 goto bad_journal;
1933 }
1934
1935 orig_checksum = jnl->jhdr->checksum;
1936 jnl->jhdr->checksum = 0;
1937
1938 if (jnl->jhdr->magic == SWAP32(JOURNAL_HEADER_MAGIC)) {
1939 // do this before the swap since it's done byte-at-a-time
1940 orig_checksum = SWAP32(orig_checksum);
1941 checksum = calc_checksum((char *)jnl->jhdr, JOURNAL_HEADER_CKSUM_SIZE);
1942 swap_journal_header(jnl);
1943 jnl->flags |= JOURNAL_NEED_SWAP;
1944 } else {
1945 checksum = calc_checksum((char *)jnl->jhdr, JOURNAL_HEADER_CKSUM_SIZE);
1946 }
1947
1948 if (jnl->jhdr->magic != JOURNAL_HEADER_MAGIC && jnl->jhdr->magic != OLD_JOURNAL_HEADER_MAGIC) {
1949 printf("jnl: %s: open: journal magic is bad (0x%x != 0x%x)\n",
1950 jnl->jdev_name, jnl->jhdr->magic, JOURNAL_HEADER_MAGIC);
1951 goto bad_journal;
1952 }
1953
1954 // only check if we're the current journal header magic value
1955 if (jnl->jhdr->magic == JOURNAL_HEADER_MAGIC) {
1956
1957 if (orig_checksum != checksum) {
1958 printf("jnl: %s: open: journal checksum is bad (0x%x != 0x%x)\n",
1959 jdev_name, orig_checksum, checksum);
1960
1961 //goto bad_journal;
1962 }
1963 }
1964
1965 // XXXdbg - convert old style magic numbers to the new one
1966 if (jnl->jhdr->magic == OLD_JOURNAL_HEADER_MAGIC) {
1967 jnl->jhdr->magic = JOURNAL_HEADER_MAGIC;
1968 }
1969
1970 if (phys_blksz != (size_t)jnl->jhdr->jhdr_size && jnl->jhdr->jhdr_size != 0) {
1971 /*
1972 * The volume has probably been resized (such that we had to adjust the
1973 * logical sector size), or copied to media with a different logical
1974 * sector size.
1975 *
1976 * Temporarily change the device's logical block size to match the
1977 * journal's header size. This will allow us to replay the journal
1978 * safely. If the replay succeeds, we will update the journal's header
1979 * size (later in this function).
1980 */
1981 orig_blksz = phys_blksz;
1982 phys_blksz = jnl->jhdr->jhdr_size;
1983 VNOP_IOCTL(jvp, DKIOCSETBLOCKSIZE, (caddr_t)&phys_blksz, FWRITE, vfs_context_kernel());
1984 printf("jnl: %s: open: temporarily switched block size from %u to %u\n",
1985 jdev_name, orig_blksz, phys_blksz);
1986 }
1987
1988 if ( jnl->jhdr->start <= 0
1989 || jnl->jhdr->start > jnl->jhdr->size
1990 || jnl->jhdr->start > 1024*1024*1024) {
1991 printf("jnl: %s: open: jhdr start looks bad (0x%llx max size 0x%llx)\n",
1992 jdev_name, jnl->jhdr->start, jnl->jhdr->size);
1993 goto bad_journal;
1994 }
1995
1996 if ( jnl->jhdr->end <= 0
1997 || jnl->jhdr->end > jnl->jhdr->size
1998 || jnl->jhdr->end > 1024*1024*1024) {
1999 printf("jnl: %s: open: jhdr end looks bad (0x%llx max size 0x%llx)\n",
2000 jdev_name, jnl->jhdr->end, jnl->jhdr->size);
2001 goto bad_journal;
2002 }
2003
2004 if (jnl->jhdr->size < (256*1024) || jnl->jhdr->size > 1024*1024*1024) {
2005 printf("jnl: %s: open: jhdr size looks bad (0x%llx)\n", jdev_name, jnl->jhdr->size);
2006 goto bad_journal;
2007 }
2008
2009 // XXXdbg - can't do these checks because hfs writes all kinds of
2010 // non-uniform sized blocks even on devices that have a block size
2011 // that is larger than 512 bytes (i.e. optical media w/2k blocks).
2012 // therefore these checks will fail and so we just have to punt and
2013 // do more relaxed checking...
2014 // XXXdbg if ((jnl->jhdr->start % jnl->jhdr->jhdr_size) != 0) {
2015 if ((jnl->jhdr->start % 512) != 0) {
2016 printf("jnl: %s: open: journal start (0x%llx) not a multiple of 512?\n",
2017 jdev_name, jnl->jhdr->start);
2018 goto bad_journal;
2019 }
2020
2021 //XXXdbg if ((jnl->jhdr->end % jnl->jhdr->jhdr_size) != 0) {
2022 if ((jnl->jhdr->end % 512) != 0) {
2023 printf("jnl: %s: open: journal end (0x%llx) not a multiple of block size (0x%x)?\n",
2024 jdev_name, jnl->jhdr->end, jnl->jhdr->jhdr_size);
2025 goto bad_journal;
2026 }
2027
2028 if (jnl->jhdr->blhdr_size < 0) {
2029 //throw out invalid sizes
2030 printf("jnl %s: open: blhdr size looks bogus! (%d) \n",
2031 jdev_name, jnl->jhdr->blhdr_size);
2032 goto bad_journal;
2033 }
2034
2035 // take care of replaying the journal if necessary
2036 if (flags & JOURNAL_RESET) {
2037 printf("jnl: %s: journal start/end pointers reset! (s 0x%llx e 0x%llx)\n",
2038 jdev_name, jnl->jhdr->start, jnl->jhdr->end);
2039 jnl->jhdr->start = jnl->jhdr->end;
2040 } else if (replay_journal(jnl) != 0) {
2041 printf("jnl: %s: journal_open: Error replaying the journal!\n", jdev_name);
2042 goto bad_journal;
2043 }
2044
2045 /*
2046 * When we get here, we know that the journal is empty (jnl->jhdr->start ==
2047 * jnl->jhdr->end). If the device's logical block size was different from
2048 * the journal's header size, then we can now restore the device's logical
2049 * block size and update the journal's header size to match.
2050 *
2051 * Note that we also adjust the journal's start and end so that they will
2052 * be aligned on the new block size. We pick a new sequence number to
2053 * avoid any problems if a replay found previous transactions using the old
2054 * journal header size. (See the comments in journal_create(), above.)
2055 */
2056
2057 if (orig_blksz != 0) {
2058 VNOP_IOCTL(jvp, DKIOCSETBLOCKSIZE, (caddr_t)&orig_blksz, FWRITE, vfs_context_kernel());
2059 phys_blksz = orig_blksz;
2060
2061 orig_blksz = 0;
2062
2063 jnl->jhdr->jhdr_size = phys_blksz;
2064 jnl->jhdr->start = phys_blksz;
2065 jnl->jhdr->end = phys_blksz;
2066 jnl->jhdr->sequence_num = (jnl->jhdr->sequence_num +
2067 (journal_size / phys_blksz) +
2068 (random() % 16384)) & 0x00ffffff;
2069
2070 if (write_journal_header(jnl, 1, jnl->jhdr->sequence_num)) {
2071 printf("jnl: %s: open: failed to update journal header size\n", jdev_name);
2072 goto bad_journal;
2073 }
2074 }
2075
2076 // make sure this is in sync!
2077 jnl->active_start = jnl->jhdr->start;
2078 jnl->sequence_num = jnl->jhdr->sequence_num;
2079
2080 // set this now, after we've replayed the journal
2081 size_up_tbuffer(jnl, tbuffer_size, phys_blksz);
2082
2083 // TODO: Does this need to change if the device's logical block size changed?
2084 if ((off_t)(jnl->jhdr->blhdr_size/sizeof(block_info)-1) > (jnl->jhdr->size/jnl->jhdr->jhdr_size)) {
2085 printf("jnl: %s: open: jhdr size and blhdr size are not compatible (0x%llx, %d, %d)\n", jdev_name, jnl->jhdr->size,
2086 jnl->jhdr->blhdr_size, jnl->jhdr->jhdr_size);
2087 goto bad_journal;
2088 }
2089
2090 lck_mtx_init(&jnl->jlock, jnl_mutex_group, jnl_lock_attr);
2091 lck_mtx_init(&jnl->flock, jnl_mutex_group, jnl_lock_attr);
2092 lck_rw_init(&jnl->trim_lock, jnl_mutex_group, jnl_lock_attr);
2093
2094 goto journal_open_complete;
2095
2096 bad_journal:
2097 if (orig_blksz != 0) {
2098 phys_blksz = orig_blksz;
2099 VNOP_IOCTL(jvp, DKIOCSETBLOCKSIZE, (caddr_t)&orig_blksz, FWRITE, vfs_context_kernel());
2100 printf("jnl: %s: open: restored block size after error\n", jdev_name);
2101 }
2102 hfs_free(jnl->header_buf, jnl->header_buf_size);
2103 hfs_free(jnl, sizeof(*jnl));
2104 cleanup_jdev_name:
2105 vnode_putname_printable(jdev_name);
2106 jnl = NULL;
2107 journal_open_complete:
2108 return jnl;
2109 }
2110
2111
2112 int
2113 journal_is_clean(struct vnode *jvp,
2114 off_t offset,
2115 off_t journal_size,
2116 struct vnode *fsvp,
2117 size_t min_fs_block_size)
2118 {
2119 journal jnl;
2120 uint32_t phys_blksz;
2121 int ret;
2122 int orig_checksum, checksum;
2123 const char *jdev_name = vnode_getname_printable(jvp);
2124
2125 /* Get the real physical block size. */
2126 if (VNOP_IOCTL(jvp, DKIOCGETBLOCKSIZE, (caddr_t)&phys_blksz, 0, vfs_context_kernel())) {
2127 printf("jnl: %s: is_clean: failed to get device block size.\n", jdev_name);
2128 ret = EINVAL;
2129 goto cleanup_jdev_name;
2130 }
2131
2132 if (phys_blksz > (uint32_t)min_fs_block_size) {
2133 printf("jnl: %s: is_clean: error: phys blksize %d bigger than min fs blksize %zd\n",
2134 jdev_name, phys_blksz, min_fs_block_size);
2135 ret = EINVAL;
2136 goto cleanup_jdev_name;
2137 }
2138
2139 if (journal_size < (256*1024) || journal_size > (MAX_JOURNAL_SIZE)) {
2140 printf("jnl: %s: is_clean: journal size %lld looks bogus.\n", jdev_name, journal_size);
2141 ret = EINVAL;
2142 goto cleanup_jdev_name;
2143 }
2144
2145 if ((journal_size % phys_blksz) != 0) {
2146 printf("jnl: %s: is_clean: journal size 0x%llx is not an even multiple of block size 0x%x\n",
2147 jdev_name, journal_size, phys_blksz);
2148 ret = EINVAL;
2149 goto cleanup_jdev_name;
2150 }
2151
2152 memset(&jnl, 0, sizeof(jnl));
2153
2154 jnl.header_buf = hfs_malloc(phys_blksz);
2155 jnl.header_buf_size = phys_blksz;
2156
2157 get_io_info(jvp, phys_blksz, &jnl, vfs_context_kernel());
2158
2159 jnl.jhdr = (journal_header *)jnl.header_buf;
2160 memset(jnl.jhdr, 0, sizeof(journal_header));
2161
2162 jnl.jdev = jvp;
2163 jnl.jdev_offset = offset;
2164 jnl.fsdev = fsvp;
2165
2166 // we have to set this up here so that do_journal_io() will work
2167 jnl.jhdr->jhdr_size = phys_blksz;
2168
2169 if (read_journal_header(&jnl, jnl.jhdr, phys_blksz) != (unsigned)phys_blksz) {
2170 printf("jnl: %s: is_clean: could not read %d bytes for the journal header.\n",
2171 jdev_name, phys_blksz);
2172 ret = EINVAL;
2173 goto get_out;
2174 }
2175
2176 orig_checksum = jnl.jhdr->checksum;
2177 jnl.jhdr->checksum = 0;
2178
2179 if (jnl.jhdr->magic == SWAP32(JOURNAL_HEADER_MAGIC)) {
2180 // do this before the swap since it's done byte-at-a-time
2181 orig_checksum = SWAP32(orig_checksum);
2182 checksum = calc_checksum((char *)jnl.jhdr, JOURNAL_HEADER_CKSUM_SIZE);
2183 swap_journal_header(&jnl);
2184 jnl.flags |= JOURNAL_NEED_SWAP;
2185 } else {
2186 checksum = calc_checksum((char *)jnl.jhdr, JOURNAL_HEADER_CKSUM_SIZE);
2187 }
2188
2189 if (jnl.jhdr->magic != JOURNAL_HEADER_MAGIC && jnl.jhdr->magic != OLD_JOURNAL_HEADER_MAGIC) {
2190 printf("jnl: %s: is_clean: journal magic is bad (0x%x != 0x%x)\n",
2191 jdev_name, jnl.jhdr->magic, JOURNAL_HEADER_MAGIC);
2192 ret = EINVAL;
2193 goto get_out;
2194 }
2195
2196 if (orig_checksum != checksum) {
2197 printf("jnl: %s: is_clean: journal checksum is bad (0x%x != 0x%x)\n", jdev_name, orig_checksum, checksum);
2198 ret = EINVAL;
2199 goto get_out;
2200 }
2201
2202 //
2203 // if the start and end are equal then the journal is clean.
2204 // otherwise it's not clean and therefore an error.
2205 //
2206 if (jnl.jhdr->start == jnl.jhdr->end) {
2207 ret = 0;
2208 } else {
2209 ret = EBUSY; // so the caller can differentiate an invalid journal from a "busy" one
2210 }
2211
2212 get_out:
2213 hfs_free(jnl.header_buf, jnl.header_buf_size);
2214 cleanup_jdev_name:
2215 vnode_putname_printable(jdev_name);
2216 return ret;
2217 }
2218
2219
2220 void
2221 journal_close(journal *jnl)
2222 {
2223 volatile off_t *start, *end;
2224 int counter=0;
2225
2226 CHECK_JOURNAL(jnl);
2227
2228 // set this before doing anything that would block so that
2229 // we start tearing things down properly.
2230 //
2231 jnl->flags |= JOURNAL_CLOSE_PENDING;
2232
2233 if (jnl->owner != current_thread()) {
2234 journal_lock(jnl);
2235 }
2236
2237 wait_condition(jnl, &jnl->flushing, "journal_close");
2238
2239 //
2240 // only write stuff to disk if the journal is still valid
2241 //
2242 if ((jnl->flags & JOURNAL_INVALID) == 0) {
2243
2244 if (jnl->active_tr) {
2245 /*
2246 * "journal_end_transaction" will fire the flush asynchronously
2247 */
2248 journal_end_transaction(jnl);
2249 }
2250
2251 // flush any buffered transactions
2252 if (jnl->cur_tr) {
2253 transaction *tr = jnl->cur_tr;
2254
2255 jnl->cur_tr = NULL;
2256 /*
2257 * "end_transaction" will wait for any in-progress flush to complete
2258 * before flushing "cur_tr" synchronously("must_wait" == TRUE)
2259 */
2260 end_transaction(tr, 1, NULL, NULL, FALSE, TRUE);
2261 }
2262 /*
2263 * if there was an "active_tr", make sure we wait for
2264 * it to flush if there was no "cur_tr" to process
2265 */
2266 wait_condition(jnl, &jnl->flushing, "journal_close");
2267
2268 //start = &jnl->jhdr->start;
2269 start = &jnl->active_start;
2270 end = &jnl->jhdr->end;
2271
2272 while (*start != *end && counter++ < 5000) {
2273 //printf("jnl: close: flushing the buffer cache (start 0x%llx end 0x%llx)\n", *start, *end);
2274 if (jnl->flush) {
2275 jnl->flush(jnl->flush_arg);
2276 }
2277 tsleep((caddr_t)jnl, PRIBIO, "jnl_close", 2);
2278 }
2279
2280 if (*start != *end) {
2281 printf("jnl: %s: close: buffer flushing didn't seem to flush out all the transactions! (0x%llx - 0x%llx)\n",
2282 jnl->jdev_name, *start, *end);
2283 }
2284
2285 // make sure this is in sync when we close the journal
2286 jnl->jhdr->start = jnl->active_start;
2287
2288 // if this fails there's not much we can do at this point...
2289 write_journal_header(jnl, 1, jnl->sequence_num);
2290 } else {
2291 // if we're here the journal isn't valid any more.
2292 // so make sure we don't leave any locked blocks lying around
2293 printf("jnl: %s: close: journal is invalid. aborting outstanding transactions\n", jnl->jdev_name);
2294 if (jnl->active_tr || jnl->cur_tr) {
2295 transaction *tr;
2296
2297 if (jnl->active_tr) {
2298 tr = jnl->active_tr;
2299 jnl->active_tr = NULL;
2300 } else {
2301 tr = jnl->cur_tr;
2302 jnl->cur_tr = NULL;
2303 }
2304 abort_transaction(jnl, tr);
2305
2306 if (jnl->active_tr || jnl->cur_tr) {
2307 panic("jnl: %s: close: jnl @ %p had both an active and cur tr\n", jnl->jdev_name, jnl);
2308 }
2309 }
2310 }
2311 wait_condition(jnl, &jnl->asyncIO, "journal_close");
2312
2313 free_old_stuff(jnl);
2314
2315 hfs_free(jnl->header_buf, jnl->header_buf_size);
2316 jnl->jhdr = (void *)0xbeefbabe;
2317
2318 vnode_putname_printable(jnl->jdev_name);
2319
2320 journal_unlock(jnl);
2321 lck_mtx_destroy(&jnl->old_start_lock, jnl_mutex_group);
2322 lck_mtx_destroy(&jnl->jlock, jnl_mutex_group);
2323 lck_mtx_destroy(&jnl->flock, jnl_mutex_group);
2324 hfs_free(jnl, sizeof(*jnl));
2325 }
2326
2327 static void
2328 dump_journal(journal *jnl)
2329 {
2330 transaction *ctr;
2331
2332 printf("journal for dev %s:", jnl->jdev_name);
2333 printf(" jdev_offset %.8llx\n", jnl->jdev_offset);
2334 printf(" magic: 0x%.8x\n", jnl->jhdr->magic);
2335 printf(" start: 0x%.8llx\n", jnl->jhdr->start);
2336 printf(" end: 0x%.8llx\n", jnl->jhdr->end);
2337 printf(" size: 0x%.8llx\n", jnl->jhdr->size);
2338 printf(" blhdr size: %d\n", jnl->jhdr->blhdr_size);
2339 printf(" jhdr size: %d\n", jnl->jhdr->jhdr_size);
2340 printf(" chksum: 0x%.8x\n", jnl->jhdr->checksum);
2341
2342 printf(" completed transactions:\n");
2343 for (ctr = jnl->completed_trs; ctr; ctr = ctr->next) {
2344 printf(" 0x%.8llx - 0x%.8llx\n", ctr->journal_start, ctr->journal_end);
2345 }
2346 }
2347
2348
2349
2350 static off_t
2351 free_space(journal *jnl)
2352 {
2353 off_t free_space_offset;
2354
2355 if (jnl->jhdr->start < jnl->jhdr->end) {
2356 free_space_offset = jnl->jhdr->size - (jnl->jhdr->end - jnl->jhdr->start) - jnl->jhdr->jhdr_size;
2357 } else if (jnl->jhdr->start > jnl->jhdr->end) {
2358 free_space_offset = jnl->jhdr->start - jnl->jhdr->end;
2359 } else {
2360 // journal is completely empty
2361 free_space_offset = jnl->jhdr->size - jnl->jhdr->jhdr_size;
2362 }
2363
2364 return free_space_offset;
2365 }
2366
2367
2368 //
2369 // The journal must be locked on entry to this function.
2370 // The "desired_size" is in bytes.
2371 //
2372 static int
2373 check_free_space(journal *jnl, int desired_size, boolean_t *delayed_header_write, uint32_t sequence_num)
2374 {
2375 size_t i;
2376 int counter=0;
2377
2378 //printf("jnl: check free space (desired 0x%x, avail 0x%Lx)\n",
2379 // desired_size, free_space(jnl));
2380
2381 if (delayed_header_write)
2382 *delayed_header_write = FALSE;
2383
2384 while (1) {
2385 int old_start_empty;
2386
2387 // make sure there's space in the journal to hold this transaction
2388 if (free_space(jnl) > desired_size && jnl->old_start[0] == 0) {
2389 break;
2390 }
2391 if (counter++ == 5000) {
2392 dump_journal(jnl);
2393 panic("jnl: check_free_space: buffer flushing isn't working "
2394 "(jnl @ %p s %lld e %lld f %lld [active start %lld]).\n", jnl,
2395 jnl->jhdr->start, jnl->jhdr->end, free_space(jnl), jnl->active_start);
2396 }
2397 if (counter > 7500) {
2398 printf("jnl: %s: check_free_space: giving up waiting for free space.\n", jnl->jdev_name);
2399 return ENOSPC;
2400 }
2401
2402 //
2403 // here's where we lazily bump up jnl->jhdr->start. we'll consume
2404 // entries until there is enough space for the next transaction.
2405 //
2406 old_start_empty = 1;
2407 lock_oldstart(jnl);
2408
2409 for (i = 0; i < sizeof(jnl->old_start)/sizeof(jnl->old_start[0]); i++) {
2410 int lcl_counter;
2411
2412 lcl_counter = 0;
2413 while (jnl->old_start[i] & 0x8000000000000000LL) {
2414 if (lcl_counter++ > 10000) {
2415 panic("jnl: check_free_space: tr starting @ 0x%llx not flushing (jnl %p).\n",
2416 jnl->old_start[i], jnl);
2417 }
2418
2419 unlock_oldstart(jnl);
2420 if (jnl->flush) {
2421 jnl->flush(jnl->flush_arg);
2422 }
2423 tsleep((caddr_t)jnl, PRIBIO, "check_free_space1", 1);
2424 lock_oldstart(jnl);
2425 }
2426
2427 if (jnl->old_start[i] == 0) {
2428 continue;
2429 }
2430
2431 old_start_empty = 0;
2432 jnl->jhdr->start = jnl->old_start[i];
2433 jnl->old_start[i] = 0;
2434
2435 if (free_space(jnl) > desired_size) {
2436
2437 if (delayed_header_write)
2438 *delayed_header_write = TRUE;
2439 else {
2440 unlock_oldstart(jnl);
2441 write_journal_header(jnl, 1, sequence_num);
2442 lock_oldstart(jnl);
2443 }
2444 break;
2445 }
2446 }
2447 unlock_oldstart(jnl);
2448
2449 // if we bumped the start, loop and try again
2450 if (i < sizeof(jnl->old_start)/sizeof(jnl->old_start[0])) {
2451 continue;
2452 } else if (old_start_empty) {
2453 //
2454 // if there is nothing in old_start anymore then we can
2455 // bump the jhdr->start to be the same as active_start
2456 // since it is possible there was only one very large
2457 // transaction in the old_start array. if we didn't do
2458 // this then jhdr->start would never get updated and we
2459 // would wind up looping until we hit the panic at the
2460 // start of the loop.
2461 //
2462 jnl->jhdr->start = jnl->active_start;
2463
2464 if (delayed_header_write)
2465 *delayed_header_write = TRUE;
2466 else
2467 write_journal_header(jnl, 1, sequence_num);
2468 continue;
2469 }
2470
2471
2472 // if the file system gave us a flush function, call it to so that
2473 // it can flush some blocks which hopefully will cause some transactions
2474 // to complete and thus free up space in the journal.
2475 if (jnl->flush) {
2476 jnl->flush(jnl->flush_arg);
2477 }
2478
2479 // wait for a while to avoid being cpu-bound (this will
2480 // put us to sleep for 10 milliseconds)
2481 tsleep((caddr_t)jnl, PRIBIO, "check_free_space2", 1);
2482 }
2483
2484 return 0;
2485 }
2486
2487 /*
2488 * Allocate a new active transaction.
2489 */
2490 static errno_t
2491 journal_allocate_transaction(journal *jnl)
2492 {
2493 transaction *tr;
2494 boolean_t was_vm_privileged = FALSE;
2495
2496 if (vfs_isswapmount(jnl->fsmount)) {
2497 /*
2498 * the disk driver can allocate memory on this path...
2499 * if we block waiting for memory, and there is enough pressure to
2500 * cause us to try and create a new swap file, we may end up deadlocking
2501 * due to waiting for the journal on the swap file creation path...
2502 * by making ourselves vm_privileged, we give ourselves the best chance
2503 * of not blocking
2504 */
2505 was_vm_privileged = set_vm_privilege(TRUE);
2506 }
2507 tr = hfs_mallocz(sizeof(transaction));
2508
2509 tr->tbuffer_size = jnl->tbuffer_size;
2510
2511 tr->tbuffer = hfs_malloc(tr->tbuffer_size);
2512
2513 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
2514 set_vm_privilege(FALSE);
2515
2516 // journal replay code checksum check depends on this.
2517 memset(tr->tbuffer, 0, BLHDR_CHECKSUM_SIZE);
2518 // Fill up the rest of the block with unimportant bytes (0x5a 'Z' chosen for visibility)
2519 memset(tr->tbuffer + BLHDR_CHECKSUM_SIZE, 0x5a, jnl->jhdr->blhdr_size - BLHDR_CHECKSUM_SIZE);
2520
2521 tr->blhdr = (block_list_header *)tr->tbuffer;
2522 tr->blhdr->max_blocks = (jnl->jhdr->blhdr_size / sizeof(block_info)) - 1;
2523 tr->blhdr->num_blocks = 1; // accounts for this header block
2524 tr->blhdr->bytes_used = jnl->jhdr->blhdr_size;
2525 tr->blhdr->flags = BLHDR_CHECK_CHECKSUMS | BLHDR_FIRST_HEADER;
2526
2527 tr->sequence_num = ++jnl->sequence_num;
2528 tr->num_blhdrs = 1;
2529 tr->total_bytes = jnl->jhdr->blhdr_size;
2530 tr->jnl = jnl;
2531
2532 jnl->active_tr = tr;
2533
2534 return 0;
2535 }
2536
2537 int
2538 journal_start_transaction(journal *jnl)
2539 {
2540 int ret;
2541
2542 CHECK_JOURNAL(jnl);
2543
2544 free_old_stuff(jnl);
2545
2546 if (jnl->flags & JOURNAL_INVALID) {
2547 return EINVAL;
2548 }
2549 if (jnl->owner == current_thread()) {
2550 if (jnl->active_tr == NULL) {
2551 panic("jnl: start_tr: active_tr is NULL (jnl @ %p, owner %p, current_thread %p\n",
2552 jnl, jnl->owner, current_thread());
2553 }
2554 jnl->nested_count++;
2555 return 0;
2556 }
2557
2558 journal_lock(jnl);
2559
2560 if (jnl->nested_count != 0 || jnl->active_tr != NULL) {
2561 panic("jnl: start_tr: owner %p, nested count %d, active_tr %p jnl @ %p\n",
2562 jnl->owner, jnl->nested_count, jnl->active_tr, jnl);
2563 }
2564
2565 jnl->nested_count = 1;
2566
2567 #if JOE
2568 // make sure there's room in the journal
2569 if (free_space(jnl) < jnl->tbuffer_size) {
2570
2571 KERNEL_DEBUG(0xbbbbc030 | DBG_FUNC_START, jnl, 0, 0, 0, 0);
2572
2573 // this is the call that really waits for space to free up
2574 // as well as updating jnl->jhdr->start
2575 if (check_free_space(jnl, jnl->tbuffer_size, NULL, jnl->sequence_num) != 0) {
2576 printf("jnl: %s: start transaction failed: no space\n", jnl->jdev_name);
2577 ret = ENOSPC;
2578 goto bad_start;
2579 }
2580 KERNEL_DEBUG(0xbbbbc030 | DBG_FUNC_END, jnl, 0, 0, 0, 0);
2581 }
2582 #endif
2583
2584 // if there's a buffered transaction, use it.
2585 if (jnl->cur_tr) {
2586 jnl->active_tr = jnl->cur_tr;
2587 jnl->cur_tr = NULL;
2588
2589 return 0;
2590 }
2591
2592 ret = journal_allocate_transaction(jnl);
2593 if (ret) {
2594 goto bad_start;
2595 }
2596
2597 // printf("jnl: start_tr: owner 0x%x new tr @ 0x%x\n", jnl->owner, jnl->active_tr);
2598
2599 return 0;
2600
2601 bad_start:
2602 jnl->nested_count = 0;
2603 journal_unlock(jnl);
2604
2605 return ret;
2606 }
2607
2608
2609 int
2610 journal_modify_block_start(journal *jnl, struct buf *bp)
2611 {
2612 transaction *tr;
2613 boolean_t was_vm_privileged = FALSE;
2614
2615 CHECK_JOURNAL(jnl);
2616
2617
2618 free_old_stuff(jnl);
2619
2620 if (jnl->flags & JOURNAL_INVALID) {
2621 return EINVAL;
2622 }
2623
2624 if (vfs_isswapmount(jnl->fsmount)) {
2625 /*
2626 * if we block waiting for memory, and there is enough pressure to
2627 * cause us to try and create a new swap file, we may end up deadlocking
2628 * due to waiting for the journal on the swap file creation path...
2629 * by making ourselves vm_privileged, we give ourselves the best chance
2630 * of not blocking
2631 */
2632 was_vm_privileged = set_vm_privilege(TRUE);
2633 }
2634
2635 // XXXdbg - for debugging I want this to be true. later it may
2636 // not be necessary.
2637 if ((buf_flags(bp) & B_META) == 0) {
2638 panic("jnl: modify_block_start: bp @ %p is not a meta-data block! (jnl %p)\n", bp, jnl);
2639 }
2640
2641 tr = jnl->active_tr;
2642 CHECK_TRANSACTION(tr);
2643
2644 if (jnl->owner != current_thread()) {
2645 panic("jnl: modify_block_start: called w/out a transaction! jnl %p, owner %p, curact %p\n",
2646 jnl, jnl->owner, current_thread());
2647 }
2648
2649 //printf("jnl: mod block start (bp 0x%x vp 0x%x l/blkno %qd/%qd bsz %d; total bytes %d)\n",
2650 // bp, buf_vnode(bp), buf_lblkno(bp), buf_blkno(bp), buf_size(bp), tr->total_bytes);
2651
2652 // can't allow blocks that aren't an even multiple of the
2653 // underlying block size.
2654 if ((buf_size(bp) % jnl->jhdr->jhdr_size) != 0) {
2655 uint32_t phys_blksz, bad=0;
2656
2657 if (VNOP_IOCTL(jnl->jdev, DKIOCGETBLOCKSIZE, (caddr_t)&phys_blksz, 0, vfs_context_kernel())) {
2658 bad = 1;
2659 } else if (phys_blksz != (uint32_t)jnl->jhdr->jhdr_size) {
2660 if (phys_blksz < 512) {
2661 panic("jnl: mod block start: phys blksz %d is too small (%d, %d)\n",
2662 phys_blksz, buf_size(bp), jnl->jhdr->jhdr_size);
2663 }
2664
2665 if ((buf_size(bp) % phys_blksz) != 0) {
2666 bad = 1;
2667 } else if (phys_blksz < (uint32_t)jnl->jhdr->jhdr_size) {
2668 jnl->jhdr->jhdr_size = phys_blksz;
2669 } else {
2670 // the phys_blksz is now larger... need to realloc the jhdr
2671 char *new_header_buf;
2672
2673 printf("jnl: %s: phys blksz got bigger (was: %d/%d now %d)\n",
2674 jnl->jdev_name, jnl->header_buf_size, jnl->jhdr->jhdr_size, phys_blksz);
2675 new_header_buf = hfs_malloc(phys_blksz);
2676 memcpy(new_header_buf, jnl->header_buf, jnl->header_buf_size);
2677 memset(&new_header_buf[jnl->header_buf_size], 0x18, (phys_blksz - jnl->header_buf_size));
2678 hfs_free(jnl->header_buf, jnl->header_buf_size);
2679 jnl->header_buf = new_header_buf;
2680 jnl->header_buf_size = phys_blksz;
2681
2682 jnl->jhdr = (journal_header *)jnl->header_buf;
2683 jnl->jhdr->jhdr_size = phys_blksz;
2684 }
2685 } else {
2686 bad = 1;
2687 }
2688
2689 if (bad) {
2690 panic("jnl: mod block start: bufsize %d not a multiple of block size %d\n",
2691 buf_size(bp), jnl->jhdr->jhdr_size);
2692
2693 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
2694 set_vm_privilege(FALSE);
2695 return -1;
2696 }
2697 }
2698
2699 // make sure that this transaction isn't bigger than the whole journal
2700 if (tr->total_bytes+buf_size(bp) >= (jnl->jhdr->size - jnl->jhdr->jhdr_size)) {
2701 panic("jnl: transaction too big (%d >= %lld bytes, bufsize %d, tr %p bp %p)\n",
2702 tr->total_bytes, (tr->jnl->jhdr->size - jnl->jhdr->jhdr_size), buf_size(bp), tr, bp);
2703
2704 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
2705 set_vm_privilege(FALSE);
2706 return -1;
2707 }
2708
2709 #if DEBUG
2710 const int f = buf_flags(bp);
2711 hfs_assert(!ISSET(f, B_DELWRI) || ISSET(f, B_LOCKED));
2712 #endif
2713
2714 buf_setflags(bp, B_LOCKED);
2715
2716 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
2717 set_vm_privilege(FALSE);
2718
2719 return 0;
2720 }
2721
2722 int
2723 journal_modify_block_abort(journal *jnl, struct buf *bp)
2724 {
2725 transaction *tr;
2726 block_list_header *blhdr;
2727 int i;
2728
2729 CHECK_JOURNAL(jnl);
2730
2731 free_old_stuff(jnl);
2732
2733 tr = jnl->active_tr;
2734
2735 //
2736 // if there's no active transaction then we just want to
2737 // call buf_brelse() and return since this is just a block
2738 // that happened to be modified as part of another tr.
2739 //
2740 if (tr == NULL) {
2741 buf_brelse(bp);
2742 return 0;
2743 }
2744
2745 if (jnl->flags & JOURNAL_INVALID) {
2746 /* Still need to buf_brelse(). Callers assume we consume the bp. */
2747 buf_brelse(bp);
2748 return EINVAL;
2749 }
2750
2751 CHECK_TRANSACTION(tr);
2752
2753 if (jnl->owner != current_thread()) {
2754 panic("jnl: modify_block_abort: called w/out a transaction! jnl %p, owner %p, curact %p\n",
2755 jnl, jnl->owner, current_thread());
2756 }
2757
2758 // printf("jnl: modify_block_abort: tr 0x%x bp 0x%x\n", jnl->active_tr, bp);
2759
2760 // first check if it's already part of this transaction
2761 for (blhdr = tr->blhdr; blhdr; blhdr = (block_list_header *)((long)blhdr->binfo[0].bnum)) {
2762 for (i = 1; i < blhdr->num_blocks; i++) {
2763 if (bp == blhdr->binfo[i].u.bp) {
2764 break;
2765 }
2766 }
2767
2768 if (i < blhdr->num_blocks) {
2769 break;
2770 }
2771 }
2772
2773 //
2774 // if blhdr is null, then this block has only had modify_block_start
2775 // called on it as part of the current transaction. that means that
2776 // it is ok to clear the LOCKED bit since it hasn't actually been
2777 // modified. if blhdr is non-null then modify_block_end was called
2778 // on it and so we need to keep it locked in memory.
2779 //
2780 if (blhdr == NULL) {
2781 buf_clearflags(bp, B_LOCKED);
2782 }
2783
2784 buf_brelse(bp);
2785 return 0;
2786 }
2787
2788
2789 int
2790 journal_modify_block_end(journal *jnl, struct buf *bp, void (*func)(buf_t bp, void *arg), void *arg)
2791 {
2792 int i = 1;
2793 int tbuffer_offset=0;
2794 block_list_header *blhdr, *prev=NULL;
2795 transaction *tr;
2796
2797 CHECK_JOURNAL(jnl);
2798
2799 free_old_stuff(jnl);
2800
2801 if (jnl->flags & JOURNAL_INVALID) {
2802 /* Still need to buf_brelse(). Callers assume we consume the bp. */
2803 buf_brelse(bp);
2804 return EINVAL;
2805 }
2806
2807 tr = jnl->active_tr;
2808 CHECK_TRANSACTION(tr);
2809
2810 if (jnl->owner != current_thread()) {
2811 panic("jnl: modify_block_end: called w/out a transaction! jnl %p, owner %p, curact %p\n",
2812 jnl, jnl->owner, current_thread());
2813 }
2814
2815 //printf("jnl: mod block end: (bp 0x%x vp 0x%x l/blkno %qd/%qd bsz %d, total bytes %d)\n",
2816 // bp, buf_vnode(bp), buf_lblkno(bp), buf_blkno(bp), buf_size(bp), tr->total_bytes);
2817
2818 if ((buf_flags(bp) & B_LOCKED) == 0) {
2819 panic("jnl: modify_block_end: bp %p not locked! jnl @ %p\n", bp, jnl);
2820 }
2821
2822 // first check if it's already part of this transaction
2823 for (blhdr = tr->blhdr; blhdr; prev = blhdr, blhdr = (block_list_header *)((long)blhdr->binfo[0].bnum)) {
2824 tbuffer_offset = jnl->jhdr->blhdr_size;
2825
2826 for (i = 1; i < blhdr->num_blocks; i++) {
2827 if (bp == blhdr->binfo[i].u.bp) {
2828 break;
2829 }
2830 if (blhdr->binfo[i].bnum != (off_t)-1) {
2831 tbuffer_offset += buf_size(blhdr->binfo[i].u.bp);
2832 } else {
2833 tbuffer_offset += blhdr->binfo[i].u.bi.bsize;
2834 }
2835 }
2836
2837 if (i < blhdr->num_blocks) {
2838 break;
2839 }
2840 }
2841
2842 if (blhdr == NULL
2843 && prev
2844 && (prev->num_blocks+1) <= prev->max_blocks
2845 && (prev->bytes_used+buf_size(bp)) <= (uint32_t)tr->tbuffer_size) {
2846 blhdr = prev;
2847
2848 } else if (blhdr == NULL) {
2849 block_list_header *nblhdr;
2850 if (prev == NULL) {
2851 panic("jnl: modify block end: no way man, prev == NULL?!?, jnl %p, bp %p\n", jnl, bp);
2852 }
2853
2854 // we got to the end of the list, didn't find the block and there's
2855 // no room in the block_list_header pointed to by prev
2856
2857 // we allocate another tbuffer and link it in at the end of the list
2858 // through prev->binfo[0].bnum. that's a skanky way to do things but
2859 // avoids having yet another linked list of small data structures to manage.
2860
2861 nblhdr = hfs_malloc(tr->tbuffer_size);
2862
2863 // journal replay code checksum check depends on this.
2864 memset(nblhdr, 0, BLHDR_CHECKSUM_SIZE);
2865 // Fill up the rest of the block with unimportant bytes
2866 memset(nblhdr + BLHDR_CHECKSUM_SIZE, 0x5a, jnl->jhdr->blhdr_size - BLHDR_CHECKSUM_SIZE);
2867
2868 // initialize the new guy
2869 nblhdr->max_blocks = (jnl->jhdr->blhdr_size / sizeof(block_info)) - 1;
2870 nblhdr->num_blocks = 1; // accounts for this header block
2871 nblhdr->bytes_used = jnl->jhdr->blhdr_size;
2872 nblhdr->flags = BLHDR_CHECK_CHECKSUMS;
2873
2874 tr->num_blhdrs++;
2875 tr->total_bytes += jnl->jhdr->blhdr_size;
2876
2877 // then link him in at the end
2878 prev->binfo[0].bnum = (off_t)((long)nblhdr);
2879
2880 // and finally switch to using the new guy
2881 blhdr = nblhdr;
2882 tbuffer_offset = jnl->jhdr->blhdr_size;
2883 i = 1;
2884 }
2885
2886
2887 if ((i+1) > blhdr->max_blocks) {
2888 panic("jnl: modify_block_end: i = %d, max_blocks %d\n", i, blhdr->max_blocks);
2889 }
2890
2891 // if this is true then this is a new block we haven't seen
2892 if (i >= blhdr->num_blocks) {
2893 int bsize;
2894 vnode_t vp;
2895
2896 vp = buf_vnode(bp);
2897 if (vnode_ref(vp)) {
2898 // Nobody checks the return values, so...
2899 jnl->flags |= JOURNAL_INVALID;
2900
2901 buf_brelse(bp);
2902
2903 // We're probably here due to a force unmount, so EIO is appropriate
2904 return EIO;
2905 }
2906
2907 bsize = buf_size(bp);
2908
2909 blhdr->binfo[i].bnum = (off_t)(buf_blkno(bp));
2910 blhdr->binfo[i].u.bp = bp;
2911
2912 KERNEL_DEBUG_CONSTANT(0x3018004, kdebug_vnode(vp), blhdr->binfo[i].bnum, bsize, 0, 0);
2913 /*
2914 * Update the per-task logical counter for metadata write.
2915 * We use (2 * bsize) to account for the write to the journal and the
2916 * corresponding write to the btree.
2917 */
2918 task_update_logical_writes(current_task(), (2 * bsize), TASK_WRITE_METADATA, vp);
2919
2920 if (func) {
2921 void (*old_func)(buf_t, void *)=NULL, *old_arg=NULL;
2922
2923 buf_setfilter(bp, func, arg, &old_func, &old_arg);
2924 if (old_func != NULL && old_func != func) {
2925 panic("jnl: modify_block_end: old func %p / arg %p (func %p)", old_func, old_arg, func);
2926 }
2927 }
2928
2929 blhdr->bytes_used += bsize;
2930 tr->total_bytes += bsize;
2931
2932 blhdr->num_blocks++;
2933 }
2934 buf_bdwrite(bp);
2935
2936 return 0;
2937 }
2938
2939 int
2940 journal_kill_block(journal *jnl, struct buf *bp)
2941 {
2942 int i;
2943 int bflags;
2944 block_list_header *blhdr;
2945 transaction *tr;
2946
2947 CHECK_JOURNAL(jnl);
2948
2949 free_old_stuff(jnl);
2950
2951 if (jnl->flags & JOURNAL_INVALID) {
2952 buf_brelse(bp);
2953 return 0;
2954 }
2955
2956 tr = jnl->active_tr;
2957 CHECK_TRANSACTION(tr);
2958
2959 if (jnl->owner != current_thread()) {
2960 panic("jnl: modify_block_end: called w/out a transaction! jnl %p, owner %p, curact %p\n",
2961 jnl, jnl->owner, current_thread());
2962 }
2963
2964 bflags = buf_flags(bp);
2965
2966 if ( !(bflags & B_LOCKED))
2967 panic("jnl: modify_block_end: called with bp not B_LOCKED");
2968
2969 /*
2970 * bp must be BL_BUSY and B_LOCKED
2971 * first check if it's already part of this transaction
2972 */
2973 for (blhdr = tr->blhdr; blhdr; blhdr = (block_list_header *)((long)blhdr->binfo[0].bnum)) {
2974
2975 for (i = 1; i < blhdr->num_blocks; i++) {
2976 if (bp == blhdr->binfo[i].u.bp) {
2977 vnode_t vp;
2978
2979 buf_clearflags(bp, B_LOCKED);
2980
2981 // this undoes the vnode_ref() in journal_modify_block_end()
2982 vp = buf_vnode(bp);
2983 vnode_rele_ext(vp, 0, 1);
2984
2985 // if the block has the DELWRI and FILTER bits sets, then
2986 // things are seriously weird. if it was part of another
2987 // transaction then journal_modify_block_start() should
2988 // have force it to be written.
2989 //
2990 //if ((bflags & B_DELWRI) && (bflags & B_FILTER)) {
2991 // panic("jnl: kill block: this defies all logic! bp 0x%x\n", bp);
2992 //} else {
2993 tr->num_killed += buf_size(bp);
2994 //}
2995 blhdr->binfo[i].bnum = (off_t)-1;
2996 blhdr->binfo[i].u.bp = NULL;
2997 blhdr->binfo[i].u.bi.bsize = buf_size(bp);
2998
2999 buf_markinvalid(bp);
3000 buf_brelse(bp);
3001
3002 return 0;
3003 }
3004 }
3005 }
3006
3007 /*
3008 * We did not find the block in any transaction buffer but we still
3009 * need to release it or else it will be left locked forever.
3010 */
3011 buf_brelse(bp);
3012
3013 return 0;
3014 }
3015
3016 /*
3017 ;________________________________________________________________________________
3018 ;
3019 ; Routine: journal_trim_set_callback
3020 ;
3021 ; Function: Provide the journal with a routine to be called back when a
3022 ; TRIM has (or would have) been issued to the device. That
3023 ; is, the transaction has been flushed to the device, and the
3024 ; blocks freed by the transaction are now safe for reuse.
3025 ;
3026 ; CAUTION: If the journal becomes invalid (eg., due to an I/O
3027 ; error when trying to write to the journal), this callback
3028 ; will stop getting called, even if extents got freed before
3029 ; the journal became invalid!
3030 ;
3031 ; Input Arguments:
3032 ; jnl - The journal structure for the filesystem.
3033 ; callback - The function to call when the TRIM is complete.
3034 ; arg - An argument to be passed to callback.
3035 ;________________________________________________________________________________
3036 */
3037 void
3038 journal_trim_set_callback(journal *jnl, jnl_trim_callback_t callback, void *arg)
3039 {
3040 jnl->trim_callback = callback;
3041 jnl->trim_callback_arg = arg;
3042 }
3043
3044
3045 /*
3046 ;________________________________________________________________________________
3047 ;
3048 ; Routine: journal_trim_realloc
3049 ;
3050 ; Function: Increase the amount of memory allocated for the list of extents
3051 ; to be unmapped (trimmed). This routine will be called when
3052 ; adding an extent to the list, and the list already occupies
3053 ; all of the space allocated to it. This routine returns ENOMEM
3054 ; if unable to allocate more space, or 0 if the extent list was
3055 ; grown successfully.
3056 ;
3057 ; Input Arguments:
3058 ; trim - The trim list to be resized.
3059 ;
3060 ; Output:
3061 ; (result) - ENOMEM or 0.
3062 ;
3063 ; Side effects:
3064 ; The allocated_count and extents fields of tr->trim are updated
3065 ; if the function returned 0.
3066 ;________________________________________________________________________________
3067 */
3068 static int
3069 trim_realloc(journal *jnl, struct jnl_trim_list *trim)
3070 {
3071 void *new_extents;
3072 uint32_t new_allocated_count;
3073 boolean_t was_vm_privileged = FALSE;
3074
3075 if (jnl_kdebug)
3076 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REALLOC | DBG_FUNC_START, obfuscate_addr(trim), 0, trim->allocated_count, trim->extent_count, 0);
3077
3078 new_allocated_count = trim->allocated_count + JOURNAL_DEFAULT_TRIM_EXTENTS;
3079
3080 if (vfs_isswapmount(jnl->fsmount)) {
3081 /*
3082 * if we block waiting for memory, and there is enough pressure to
3083 * cause us to try and create a new swap file, we may end up deadlocking
3084 * due to waiting for the journal on the swap file creation path...
3085 * by making ourselves vm_privileged, we give ourselves the best chance
3086 * of not blocking
3087 */
3088 was_vm_privileged = set_vm_privilege(TRUE);
3089 }
3090 new_extents = hfs_malloc(new_allocated_count * sizeof(dk_extent_t));
3091 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
3092 set_vm_privilege(FALSE);
3093
3094 if (new_extents == NULL) {
3095 printf("jnl: trim_realloc: unable to grow extent list!\n");
3096 /*
3097 * Since we could be called when allocating space previously marked
3098 * to be trimmed, we need to empty out the list to be safe.
3099 */
3100 trim->extent_count = 0;
3101 if (jnl_kdebug)
3102 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REALLOC | DBG_FUNC_END, ENOMEM, 0, trim->allocated_count, 0, 0);
3103 return ENOMEM;
3104 }
3105
3106 /* Copy the old extent list to the newly allocated list. */
3107 if (trim->extents != NULL) {
3108 memmove(new_extents,
3109 trim->extents,
3110 trim->allocated_count * sizeof(dk_extent_t));
3111 hfs_free(trim->extents, trim->allocated_count * sizeof(dk_extent_t));
3112 }
3113
3114 trim->allocated_count = new_allocated_count;
3115 trim->extents = new_extents;
3116
3117 if (jnl_kdebug)
3118 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REALLOC | DBG_FUNC_END, 0, 0, new_allocated_count, trim->extent_count, 0);
3119
3120 return 0;
3121 }
3122
3123 /*
3124 ;________________________________________________________________________________
3125 ;
3126 ; Routine: trim_search_extent
3127 ;
3128 ; Function: Search the given extent list to see if any of its extents
3129 ; overlap the given extent.
3130 ;
3131 ; Input Arguments:
3132 ; trim - The trim list to be searched.
3133 ; offset - The first byte of the range to be searched for.
3134 ; length - The number of bytes of the extent being searched for.
3135 ; overlap_start - start of the overlapping extent
3136 ; overlap_len - length of the overlapping extent
3137 ;
3138 ; Output:
3139 ; (result) - TRUE if one or more extents overlap, FALSE otherwise.
3140 ;________________________________________________________________________________
3141 */
3142 static int
3143 trim_search_extent(struct jnl_trim_list *trim, uint64_t offset,
3144 uint64_t length, uint64_t *overlap_start, uint64_t *overlap_len)
3145 {
3146 uint64_t end = offset + length;
3147 uint32_t lower = 0; /* Lowest index to search */
3148 uint32_t upper = trim->extent_count; /* Highest index to search + 1 */
3149 uint32_t middle;
3150
3151 /* A binary search over the extent list. */
3152 while (lower < upper) {
3153 middle = (lower + upper) / 2;
3154
3155 if (trim->extents[middle].offset >= end)
3156 upper = middle;
3157 else if (trim->extents[middle].offset + trim->extents[middle].length <= offset)
3158 lower = middle + 1;
3159 else {
3160 if (overlap_start) {
3161 *overlap_start = trim->extents[middle].offset;
3162 }
3163 if (overlap_len) {
3164 *overlap_len = trim->extents[middle].length;
3165 }
3166 return TRUE;
3167 }
3168 }
3169
3170 return FALSE;
3171 }
3172
3173
3174 /*
3175 ;________________________________________________________________________________
3176 ;
3177 ; Routine: journal_trim_add_extent
3178 ;
3179 ; Function: Keep track of extents that have been freed as part of this
3180 ; transaction. If the underlying device supports TRIM (UNMAP),
3181 ; then those extents will be trimmed/unmapped once the
3182 ; transaction has been written to the journal. (For example,
3183 ; SSDs can support trim/unmap and avoid having to recopy those
3184 ; blocks when doing wear leveling, and may reuse the same
3185 ; phsyical blocks for different logical blocks.)
3186 ;
3187 ; HFS also uses this, in combination with journal_trim_set_callback,
3188 ; to add recently freed extents to its free extent cache, but
3189 ; only after the transaction that freed them is committed to
3190 ; disk. (This reduces the chance of overwriting live data in
3191 ; a way that causes data loss if a transaction never gets
3192 ; written to the journal.)
3193 ;
3194 ; Input Arguments:
3195 ; jnl - The journal for the volume containing the byte range.
3196 ; offset - The first byte of the range to be trimmed.
3197 ; length - The number of bytes of the extent being trimmed.
3198 ;________________________________________________________________________________
3199 */
3200 int
3201 journal_trim_add_extent(journal *jnl, uint64_t offset, uint64_t length)
3202 {
3203 uint64_t end;
3204 transaction *tr;
3205 dk_extent_t *extent;
3206 uint32_t insert_index;
3207 uint32_t replace_count;
3208
3209 CHECK_JOURNAL(jnl);
3210
3211 /* TODO: Is it OK to manipulate the trim list even if JOURNAL_INVALID is set? I think so... */
3212 if (jnl->flags & JOURNAL_INVALID) {
3213 return EINVAL;
3214 }
3215
3216 tr = jnl->active_tr;
3217 CHECK_TRANSACTION(tr);
3218
3219 if (jnl_kdebug)
3220 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_ADD | DBG_FUNC_START, obfuscate_addr(jnl), offset, length, tr->trim.extent_count, 0);
3221
3222 if (jnl->owner != current_thread()) {
3223 panic("jnl: trim_add_extent: called w/out a transaction! jnl %p, owner %p, curact %p\n",
3224 jnl, jnl->owner, current_thread());
3225 }
3226
3227 free_old_stuff(jnl);
3228
3229 end = offset + length;
3230
3231 /*
3232 * Find the range of existing extents that can be combined with the
3233 * input extent. We start by counting the number of extents that end
3234 * strictly before the input extent, then count the number of extents
3235 * that overlap or are contiguous with the input extent.
3236 */
3237 extent = tr->trim.extents;
3238 insert_index = 0;
3239 while (insert_index < tr->trim.extent_count && extent->offset + extent->length < offset) {
3240 ++insert_index;
3241 ++extent;
3242 }
3243 replace_count = 0;
3244 while (insert_index + replace_count < tr->trim.extent_count && extent->offset <= end) {
3245 ++replace_count;
3246 ++extent;
3247 }
3248
3249 /*
3250 * If none of the existing extents can be combined with the input extent,
3251 * then just insert it in the list (before item number insert_index).
3252 */
3253 if (replace_count == 0) {
3254 /* If the list was already full, we need to grow it. */
3255 if (tr->trim.extent_count == tr->trim.allocated_count) {
3256 if (trim_realloc(jnl, &tr->trim) != 0) {
3257 printf("jnl: trim_add_extent: out of memory!");
3258 if (jnl_kdebug)
3259 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_ADD | DBG_FUNC_END, ENOMEM, 0, 0, tr->trim.extent_count, 0);
3260 return ENOMEM;
3261 }
3262 }
3263
3264 /* Shift any existing extents with larger offsets. */
3265 if (insert_index < tr->trim.extent_count) {
3266 memmove(&tr->trim.extents[insert_index+1],
3267 &tr->trim.extents[insert_index],
3268 (tr->trim.extent_count - insert_index) * sizeof(dk_extent_t));
3269 }
3270 tr->trim.extent_count++;
3271
3272 /* Store the new extent in the list. */
3273 tr->trim.extents[insert_index].offset = offset;
3274 tr->trim.extents[insert_index].length = length;
3275
3276 /* We're done. */
3277 if (jnl_kdebug)
3278 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_ADD | DBG_FUNC_END, 0, 0, 0, tr->trim.extent_count, 0);
3279 return 0;
3280 }
3281
3282 /*
3283 * Update extent number insert_index to be the union of the input extent
3284 * and all of the replaced extents.
3285 */
3286 if (tr->trim.extents[insert_index].offset < offset)
3287 offset = tr->trim.extents[insert_index].offset;
3288 extent = &tr->trim.extents[insert_index + replace_count - 1];
3289 if (extent->offset + extent->length > end)
3290 end = extent->offset + extent->length;
3291 tr->trim.extents[insert_index].offset = offset;
3292 tr->trim.extents[insert_index].length = end - offset;
3293
3294 /*
3295 * If we were replacing more than one existing extent, then shift any
3296 * extents with larger offsets, and update the count of extents.
3297 *
3298 * We're going to leave extent #insert_index alone since it was just updated, above.
3299 * We need to move extents from index (insert_index + replace_count) through the end of
3300 * the list by (replace_count - 1) positions so that they overwrite extent #(insert_index + 1).
3301 */
3302 if (replace_count > 1 && (insert_index + replace_count) < tr->trim.extent_count) {
3303 memmove(&tr->trim.extents[insert_index + 1],
3304 &tr->trim.extents[insert_index + replace_count],
3305 (tr->trim.extent_count - insert_index - replace_count) * sizeof(dk_extent_t));
3306 }
3307 tr->trim.extent_count -= replace_count - 1;
3308
3309 if (jnl_kdebug)
3310 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_ADD | DBG_FUNC_END, 0, 0, 0, tr->trim.extent_count, 0);
3311 return 0;
3312 }
3313
3314 /*
3315 * journal_trim_extent_overlap
3316 *
3317 * Return 1 if there are any pending TRIMs that overlap with the given offset and length
3318 * Return 0 otherwise.
3319 */
3320
3321 int journal_trim_extent_overlap (journal *jnl, uint64_t offset, uint64_t length, uint64_t *end) {
3322 transaction *tr = NULL;
3323 int overlap = 0;
3324
3325 uint64_t overlap_start;
3326 uint64_t overlap_len;
3327 tr = jnl->active_tr;
3328 CHECK_TRANSACTION(tr);
3329
3330 /*
3331 * There are two lists that need to be examined for potential overlaps:
3332 *
3333 * The first is the current transaction. Since this function requires that
3334 * a transaction be active when this is called, this is the "active_tr"
3335 * pointer in the journal struct. This has a trimlist pointer which needs
3336 * to be searched.
3337 */
3338 overlap = trim_search_extent (&tr->trim, offset, length, &overlap_start, &overlap_len);
3339 if (overlap == 0) {
3340 /*
3341 * The second is the async trim list, which is only done if the current
3342 * transaction group (active transaction) did not overlap with our target
3343 * extent. This async trim list is the set of all previously
3344 * committed transaction groups whose I/Os are now in-flight. We need to hold the
3345 * trim lock in order to search this list. If we grab the list before the
3346 * TRIM has completed, then we will compare it. If it is grabbed AFTER the
3347 * TRIM has completed, then the pointer will be zeroed out and we won't have
3348 * to check anything.
3349 */
3350 lck_rw_lock_shared (&jnl->trim_lock);
3351 if (jnl->async_trim != NULL) {
3352 overlap = trim_search_extent(jnl->async_trim, offset, length, &overlap_start, &overlap_len);
3353 }
3354 lck_rw_unlock_shared (&jnl->trim_lock);
3355 }
3356
3357 if (overlap) {
3358 /* compute the end (min) of the overlapping range */
3359 if ( (overlap_start + overlap_len) < (offset + length)) {
3360 *end = (overlap_start + overlap_len);
3361 }
3362 else {
3363 *end = (offset + length);
3364 }
3365 }
3366
3367
3368 return overlap;
3369 }
3370
3371 /*
3372 * journal_request_immediate_flush
3373 *
3374 * FS requests that the journal flush immediately upon the
3375 * active transaction's completion.
3376 *
3377 * Returns 0 if operation succeeds
3378 * Returns EPERM if we failed to leave hint
3379 */
3380 int
3381 journal_request_immediate_flush (journal *jnl) {
3382
3383 transaction *tr = NULL;
3384 /*
3385 * Is a transaction still in process? You must do
3386 * this while there are txns open
3387 */
3388 tr = jnl->active_tr;
3389 if (tr != NULL) {
3390 CHECK_TRANSACTION(tr);
3391 tr->flush_on_completion = TRUE;
3392 }
3393 else {
3394 return EPERM;
3395 }
3396 return 0;
3397 }
3398
3399
3400
3401 /*
3402 ;________________________________________________________________________________
3403 ;
3404 ; Routine: trim_remove_extent
3405 ;
3406 ; Function: Indicate that a range of bytes, some of which may have previously
3407 ; been passed to journal_trim_add_extent, is now allocated.
3408 ; Any overlapping ranges currently in the journal's trim list will
3409 ; be removed. If the underlying device supports TRIM (UNMAP), then
3410 ; these extents will not be trimmed/unmapped when the transaction
3411 ; is written to the journal.
3412 ;
3413 ; HFS also uses this to prevent newly allocated space from being
3414 ; added to its free extent cache (if some portion of the newly
3415 ; allocated space was recently freed).
3416 ;
3417 ; Input Arguments:
3418 ; trim - The trim list to update.
3419 ; offset - The first byte of the range to be trimmed.
3420 ; length - The number of bytes of the extent being trimmed.
3421 ;________________________________________________________________________________
3422 */
3423 static int
3424 trim_remove_extent(journal *jnl, struct jnl_trim_list *trim, uint64_t offset, uint64_t length)
3425 {
3426 u_int64_t end;
3427 dk_extent_t *extent;
3428 u_int32_t keep_before;
3429 u_int32_t keep_after;
3430
3431 end = offset + length;
3432
3433 /*
3434 * Find any existing extents that start before or end after the input
3435 * extent. These extents will be modified if they overlap the input
3436 * extent. Other extents between them will be deleted.
3437 */
3438 extent = trim->extents;
3439 keep_before = 0;
3440 while (keep_before < trim->extent_count && extent->offset < offset) {
3441 ++keep_before;
3442 ++extent;
3443 }
3444 keep_after = keep_before;
3445 if (keep_after > 0) {
3446 /* See if previous extent extends beyond both ends of input extent. */
3447 --keep_after;
3448 --extent;
3449 }
3450 while (keep_after < trim->extent_count && (extent->offset + extent->length) <= end) {
3451 ++keep_after;
3452 ++extent;
3453 }
3454
3455 /*
3456 * When we get here, the first keep_before extents (0 .. keep_before-1)
3457 * start before the input extent, and extents (keep_after .. extent_count-1)
3458 * end after the input extent. We'll need to keep, all of those extents,
3459 * but possibly modify #(keep_before-1) and #keep_after to remove the portion
3460 * that overlaps with the input extent.
3461 */
3462
3463 /*
3464 * Does the input extent start after and end before the same existing
3465 * extent? If so, we have to "punch a hole" in that extent and convert
3466 * it to two separate extents.
3467 */
3468 if (keep_before > keep_after) {
3469 /* If the list was already full, we need to grow it. */
3470 if (trim->extent_count == trim->allocated_count) {
3471 if (trim_realloc(jnl, trim) != 0) {
3472 printf("jnl: trim_remove_extent: out of memory!");
3473 return ENOMEM;
3474 }
3475 }
3476
3477 /*
3478 * Make room for a new extent by shifting extents #keep_after and later
3479 * down by one extent. When we're done, extents #keep_before and
3480 * #keep_after will be identical, and we can fall through to removing
3481 * the portion that overlaps the input extent.
3482 */
3483 memmove(&trim->extents[keep_before],
3484 &trim->extents[keep_after],
3485 (trim->extent_count - keep_after) * sizeof(dk_extent_t));
3486 ++trim->extent_count;
3487 ++keep_after;
3488
3489 /*
3490 * Fall through. We now have the case where the length of extent
3491 * #(keep_before - 1) needs to be updated, and the start of extent
3492 * #(keep_after) needs to be updated.
3493 */
3494 }
3495
3496 /*
3497 * May need to truncate the end of extent #(keep_before - 1) if it overlaps
3498 * the input extent.
3499 */
3500 if (keep_before > 0) {
3501 extent = &trim->extents[keep_before - 1];
3502 if (extent->offset + extent->length > offset) {
3503 extent->length = offset - extent->offset;
3504 }
3505 }
3506
3507 /*
3508 * May need to update the start of extent #(keep_after) if it overlaps the
3509 * input extent.
3510 */
3511 if (keep_after < trim->extent_count) {
3512 extent = &trim->extents[keep_after];
3513 if (extent->offset < end) {
3514 extent->length = extent->offset + extent->length - end;
3515 extent->offset = end;
3516 }
3517 }
3518
3519 /*
3520 * If there were whole extents that overlapped the input extent, get rid
3521 * of them by shifting any following extents, and updating the count.
3522 */
3523 if (keep_after > keep_before && keep_after < trim->extent_count) {
3524 memmove(&trim->extents[keep_before],
3525 &trim->extents[keep_after],
3526 (trim->extent_count - keep_after) * sizeof(dk_extent_t));
3527 }
3528 trim->extent_count -= keep_after - keep_before;
3529
3530 return 0;
3531 }
3532
3533 /*
3534 ;________________________________________________________________________________
3535 ;
3536 ; Routine: journal_trim_remove_extent
3537 ;
3538 ; Function: Make note of a range of bytes, some of which may have previously
3539 ; been passed to journal_trim_add_extent, is now in use on the
3540 ; volume. The given bytes will be not be trimmed as part of
3541 ; this transaction, or a pending trim of a transaction being
3542 ; asynchronously flushed.
3543 ;
3544 ; Input Arguments:
3545 ; jnl - The journal for the volume containing the byte range.
3546 ; offset - The first byte of the range to be trimmed.
3547 ; length - The number of bytes of the extent being trimmed.
3548 ;________________________________________________________________________________
3549 */
3550 int
3551 journal_trim_remove_extent(journal *jnl, uint64_t offset, uint64_t length)
3552 {
3553 int error = 0;
3554 transaction *tr;
3555
3556 CHECK_JOURNAL(jnl);
3557
3558 /* TODO: Is it OK to manipulate the trim list even if JOURNAL_INVALID is set? I think so... */
3559 if (jnl->flags & JOURNAL_INVALID) {
3560 return EINVAL;
3561 }
3562
3563 tr = jnl->active_tr;
3564 CHECK_TRANSACTION(tr);
3565
3566 if (jnl_kdebug)
3567 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REMOVE | DBG_FUNC_START, obfuscate_addr(jnl), offset, length, tr->trim.extent_count, 0);
3568
3569 if (jnl->owner != current_thread()) {
3570 panic("jnl: trim_remove_extent: called w/out a transaction! jnl %p, owner %p, curact %p\n",
3571 jnl, jnl->owner, current_thread());
3572 }
3573
3574 free_old_stuff(jnl);
3575
3576 error = trim_remove_extent(jnl, &tr->trim, offset, length);
3577 if (error == 0) {
3578 int found = FALSE;
3579
3580 /*
3581 * See if a pending trim has any extents that overlap with the
3582 * one we were given.
3583 */
3584 lck_rw_lock_shared(&jnl->trim_lock);
3585 if (jnl->async_trim != NULL)
3586 found = trim_search_extent(jnl->async_trim, offset, length, NULL, NULL);
3587 lck_rw_unlock_shared(&jnl->trim_lock);
3588
3589 if (found) {
3590 /*
3591 * There was an overlap, so avoid trimming the extent we
3592 * just allocated. (Otherwise, it might get trimmed after
3593 * we've written to it, which will cause that data to be
3594 * corrupted.)
3595 */
3596 uint32_t async_extent_count = 0;
3597
3598 if (jnl_kdebug)
3599 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REMOVE_PENDING | DBG_FUNC_START, obfuscate_addr(jnl), offset, length, 0, 0);
3600 lck_rw_lock_exclusive(&jnl->trim_lock);
3601 if (jnl->async_trim != NULL) {
3602 error = trim_remove_extent(jnl, jnl->async_trim, offset, length);
3603 async_extent_count = jnl->async_trim->extent_count;
3604 }
3605 lck_rw_unlock_exclusive(&jnl->trim_lock);
3606 if (jnl_kdebug)
3607 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REMOVE_PENDING | DBG_FUNC_END, error, 0, 0, async_extent_count, 0);
3608 }
3609 }
3610
3611 if (jnl_kdebug)
3612 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_REMOVE | DBG_FUNC_END, error, 0, 0, tr->trim.extent_count, 0);
3613 return error;
3614 }
3615
3616
3617 static int
3618 journal_trim_flush(journal *jnl, transaction *tr)
3619 {
3620 int errno = 0;
3621 boolean_t was_vm_privileged = FALSE;
3622
3623 if (jnl_kdebug)
3624 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_FLUSH | DBG_FUNC_START, obfuscate_addr(jnl), tr, 0, tr->trim.extent_count, 0);
3625
3626 if (vfs_isswapmount(jnl->fsmount)) {
3627 /*
3628 * the disk driver can allocate memory on this path...
3629 * if we block waiting for memory, and there is enough pressure to
3630 * cause us to try and create a new swap file, we may end up deadlocking
3631 * due to waiting for the journal on the swap file creation path...
3632 * by making ourselves vm_privileged, we give ourselves the best chance
3633 * of not blocking
3634 */
3635 was_vm_privileged = set_vm_privilege(TRUE);
3636 }
3637 lck_rw_lock_shared(&jnl->trim_lock);
3638 if (tr->trim.extent_count > 0) {
3639 dk_unmap_t unmap;
3640
3641 bzero(&unmap, sizeof(unmap));
3642 if (jnl->flags & JOURNAL_USE_UNMAP) {
3643 unmap.extents = tr->trim.extents;
3644 unmap.extentsCount = tr->trim.extent_count;
3645 if (jnl_kdebug)
3646 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_UNMAP | DBG_FUNC_START, obfuscate_addr(jnl), tr, 0, tr->trim.extent_count, 0);
3647 errno = VNOP_IOCTL(jnl->fsdev, DKIOCUNMAP, (caddr_t)&unmap, FWRITE, vfs_context_kernel());
3648 if (jnl_kdebug)
3649 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_UNMAP | DBG_FUNC_END, errno, 0, 0, 0, 0);
3650 }
3651
3652 /*
3653 * Call back into the file system to tell them that we have
3654 * trimmed some extents and that they can now be reused.
3655 *
3656 * CAUTION: If the journal becomes invalid (eg., due to an I/O
3657 * error when trying to write to the journal), this callback
3658 * will stop getting called, even if extents got freed before
3659 * the journal became invalid!
3660 */
3661 if (jnl->trim_callback)
3662 jnl->trim_callback(jnl->trim_callback_arg, tr->trim.extent_count, tr->trim.extents);
3663 }
3664 lck_rw_unlock_shared(&jnl->trim_lock);
3665
3666 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
3667 set_vm_privilege(FALSE);
3668 /*
3669 * If the transaction we're flushing was the async transaction, then
3670 * tell the current transaction that there is no pending trim
3671 * any more.
3672 *
3673 * NOTE: Since we released the lock, another thread could have
3674 * removed one or more extents from our list. That's not a
3675 * problem since any writes to the re-allocated blocks
3676 * would get sent to the device after the DKIOCUNMAP.
3677 */
3678 lck_rw_lock_exclusive(&jnl->trim_lock);
3679 if (jnl->async_trim == &tr->trim)
3680 jnl->async_trim = NULL;
3681 lck_rw_unlock_exclusive(&jnl->trim_lock);
3682
3683 /*
3684 * By the time we get here, no other thread can discover the address
3685 * of "tr", so it is safe for us to manipulate tr->trim without
3686 * holding any locks.
3687 */
3688 if (tr->trim.extents) {
3689 hfs_free(tr->trim.extents, tr->trim.allocated_count * sizeof(dk_extent_t));
3690 tr->trim.allocated_count = 0;
3691 tr->trim.extent_count = 0;
3692 tr->trim.extents = NULL;
3693 }
3694
3695 if (jnl_kdebug)
3696 KERNEL_DEBUG_CONSTANT(DBG_JOURNAL_TRIM_FLUSH | DBG_FUNC_END, errno, 0, 0, 0, 0);
3697
3698 return errno;
3699 }
3700
3701 static int
3702 journal_binfo_cmp(const void *a, const void *b)
3703 {
3704 const block_info *bi_a = (const struct block_info *)a;
3705 const block_info *bi_b = (const struct block_info *)b;
3706 daddr64_t res;
3707
3708 if (bi_a->bnum == (off_t)-1) {
3709 return 1;
3710 }
3711 if (bi_b->bnum == (off_t)-1) {
3712 return -1;
3713 }
3714
3715 // don't have to worry about negative block
3716 // numbers so this is ok to do.
3717 //
3718 res = (buf_blkno(bi_a->u.bp) - buf_blkno(bi_b->u.bp));
3719
3720 return (int)res;
3721 }
3722
3723
3724 /*
3725 * End a transaction. If the transaction is small enough, and we're not forcing
3726 * a write to disk, the "active" transaction becomes the "current" transaction,
3727 * and will be reused for the next transaction that is started (group commit).
3728 *
3729 * If the transaction gets written to disk (because force_it is true, or no
3730 * group commit, or the transaction is sufficiently full), the blocks get
3731 * written into the journal first, then the are written asynchronously. When
3732 * those async writes complete, the transaction can be freed and removed from
3733 * the journal.
3734 *
3735 * An optional callback can be supplied. If given, it is called after the
3736 * the blocks have been written to the journal, but before the async writes
3737 * of those blocks to their normal on-disk locations. This is used by
3738 * journal_relocate so that the location of the journal can be changed and
3739 * flushed to disk before the blocks get written to their normal locations.
3740 * Note that the callback is only called if the transaction gets written to
3741 * the journal during this end_transaction call; you probably want to set the
3742 * force_it flag.
3743 *
3744 * Inputs:
3745 * tr Transaction to add to the journal
3746 * force_it If true, force this transaction to the on-disk journal immediately.
3747 * callback See description above. Pass NULL for no callback.
3748 * callback_arg Argument passed to callback routine.
3749 *
3750 * Result
3751 * 0 No errors
3752 * -1 An error occurred. The journal is marked invalid.
3753 */
3754 static int
3755 end_transaction(transaction *tr, int force_it, errno_t (*callback)(void*), void *callback_arg, boolean_t drop_lock, boolean_t must_wait)
3756 {
3757 block_list_header *blhdr=NULL, *next=NULL;
3758 int i, ret_val = 0;
3759 errno_t errno;
3760 journal *jnl = tr->jnl;
3761 struct buf *bp;
3762 size_t tbuffer_offset;
3763 boolean_t drop_lock_early;
3764
3765 if (jnl->cur_tr) {
3766 panic("jnl: jnl @ %p already has cur_tr %p, new tr: %p\n",
3767 jnl, jnl->cur_tr, tr);
3768 }
3769
3770 // if there weren't any modified blocks in the transaction
3771 // just save off the transaction pointer and return.
3772 if (tr->total_bytes == jnl->jhdr->blhdr_size) {
3773 jnl->cur_tr = tr;
3774 goto done;
3775 }
3776
3777 // if our transaction buffer isn't very full, just hang
3778 // on to it and don't actually flush anything. this is
3779 // what is known as "group commit". we will flush the
3780 // transaction buffer if it's full or if we have more than
3781 // one of them so we don't start hogging too much memory.
3782 //
3783 // We also check the device supports UNMAP/TRIM, and if so,
3784 // the number of extents waiting to be trimmed. If it is
3785 // small enough, then keep accumulating more (so we can
3786 // reduce the overhead of trimming). If there was a prior
3787 // trim error, then we stop issuing trims for this
3788 // volume, so we can also coalesce transactions.
3789 //
3790 if ( force_it == 0
3791 && (jnl->flags & JOURNAL_NO_GROUP_COMMIT) == 0
3792 && tr->num_blhdrs < 3
3793 && (tr->total_bytes <= ((tr->tbuffer_size*tr->num_blhdrs) - tr->tbuffer_size/8))
3794 && (!(jnl->flags & JOURNAL_USE_UNMAP) || (tr->trim.extent_count < jnl_trim_flush_limit))) {
3795
3796 jnl->cur_tr = tr;
3797 goto done;
3798 }
3799
3800 KERNEL_DEBUG(0xbbbbc018|DBG_FUNC_START, jnl, tr, drop_lock, must_wait, 0);
3801
3802 lock_condition(jnl, &jnl->flushing, "end_transaction");
3803
3804 /*
3805 * if the previous 'finish_end_transaction' was being run
3806 * asynchronously, it could have encountered a condition
3807 * that caused it to mark the journal invalid... if that
3808 * occurred while we were waiting for it to finish, we
3809 * need to notice and abort the current transaction
3810 */
3811 if ((jnl->flags & JOURNAL_INVALID) || jnl->flush_aborted == TRUE) {
3812 unlock_condition(jnl, &jnl->flushing);
3813
3814 abort_transaction(jnl, tr);
3815 ret_val = -1;
3816 KERNEL_DEBUG(0xbbbbc018|DBG_FUNC_END, jnl, tr, ret_val, 0, 0);
3817 goto done;
3818 }
3819
3820 /*
3821 * Store a pointer to this transaction's trim list so that
3822 * future transactions can find it.
3823 *
3824 * Note: if there are no extents in the trim list, then don't
3825 * bother saving the pointer since nothing can add new extents
3826 * to the list (and other threads/transactions only care if
3827 * there is a trim pending).
3828 */
3829 lck_rw_lock_exclusive(&jnl->trim_lock);
3830 if (jnl->async_trim != NULL)
3831 panic("jnl: end_transaction: async_trim already non-NULL!");
3832 if (tr->trim.extent_count > 0)
3833 jnl->async_trim = &tr->trim;
3834 lck_rw_unlock_exclusive(&jnl->trim_lock);
3835
3836 /*
3837 * snapshot the transaction sequence number while we are still behind
3838 * the journal lock since it will be bumped upon the start of the
3839 * next transaction group which may overlap the current journal flush...
3840 * we pass the snapshot into write_journal_header during the journal
3841 * flush so that it can write the correct version in the header...
3842 * because we hold the 'flushing' condition variable for the duration
3843 * of the journal flush, 'saved_sequence_num' remains stable
3844 */
3845 jnl->saved_sequence_num = jnl->sequence_num;
3846
3847 /*
3848 * if we're here we're going to flush the transaction buffer to disk.
3849 * 'check_free_space' will not return untl there is enough free
3850 * space for this transaction in the journal and jnl->old_start[0]
3851 * is avaiable for use
3852 */
3853 KERNEL_DEBUG(0xbbbbc030 | DBG_FUNC_START, jnl, 0, 0, 0, 0);
3854
3855 check_free_space(jnl, tr->total_bytes, &tr->delayed_header_write, jnl->saved_sequence_num);
3856
3857 KERNEL_DEBUG(0xbbbbc030 | DBG_FUNC_END, jnl, tr->delayed_header_write, 0, 0, 0);
3858
3859 // range check the end index
3860 if (jnl->jhdr->end <= 0 || jnl->jhdr->end > jnl->jhdr->size) {
3861 panic("jnl: end_transaction: end is bogus 0x%llx (sz 0x%llx)\n",
3862 jnl->jhdr->end, jnl->jhdr->size);
3863 }
3864 if (tr->delayed_header_write == TRUE) {
3865 thread_t thread = THREAD_NULL;
3866
3867 lock_condition(jnl, &jnl->writing_header, "end_transaction");
3868 /*
3869 * fire up a thread to write the journal header
3870 * asynchronously... when it finishes, it will call
3871 * unlock_condition... we can overlap the preparation of
3872 * the log and buffers during this time
3873 */
3874 kernel_thread_start((thread_continue_t)write_header_thread, jnl, &thread);
3875 } else
3876 jnl->write_header_failed = FALSE;
3877
3878
3879 // this transaction starts where the current journal ends
3880 tr->journal_start = jnl->jhdr->end;
3881
3882 lock_oldstart(jnl);
3883 /*
3884 * Because old_start is locked above, we can cast away the volatile qualifier before passing it to memcpy.
3885 * slide everyone else down and put our latest guy in the last
3886 * entry in the old_start array
3887 */
3888 memcpy(__CAST_AWAY_QUALIFIER(&jnl->old_start[0], volatile, void *), __CAST_AWAY_QUALIFIER(&jnl->old_start[1], volatile, void *), sizeof(jnl->old_start)-sizeof(jnl->old_start[0]));
3889 jnl->old_start[sizeof(jnl->old_start)/sizeof(jnl->old_start[0]) - 1] = tr->journal_start | 0x8000000000000000LL;
3890
3891 unlock_oldstart(jnl);
3892
3893
3894 for (blhdr = tr->blhdr; blhdr; blhdr = next) {
3895 char *blkptr;
3896 buf_t sbp;
3897 int32_t bsize;
3898
3899 tbuffer_offset = jnl->jhdr->blhdr_size;
3900
3901 for (i = 1; i < blhdr->num_blocks; i++) {
3902
3903 if (blhdr->binfo[i].bnum != (off_t)-1) {
3904 void (*func)(buf_t, void *);
3905 void *arg;
3906
3907 bp = blhdr->binfo[i].u.bp;
3908
3909 if (bp == NULL) {
3910 panic("jnl: inconsistent binfo (NULL bp w/bnum %lld; jnl @ %p, tr %p)\n",
3911 blhdr->binfo[i].bnum, jnl, tr);
3912 }
3913 /*
3914 * acquire the bp here so that we can safely
3915 * mess around with its data. buf_acquire()
3916 * will return EAGAIN if the buffer was busy,
3917 * so loop trying again.
3918 */
3919 do {
3920 errno = buf_acquire(bp, BAC_REMOVE, 0, 0);
3921 } while (errno == EAGAIN);
3922
3923 if (errno)
3924 panic("could not acquire bp %p (err %d)\n", bp, errno);
3925
3926 if ((buf_flags(bp) & (B_LOCKED|B_DELWRI)) != (B_LOCKED|B_DELWRI)) {
3927 if (jnl->flags & JOURNAL_CLOSE_PENDING) {
3928 buf_clearflags(bp, B_LOCKED);
3929 buf_brelse(bp);
3930
3931 /*
3932 * this is an odd case that appears to happen occasionally
3933 * make sure we mark this block as no longer valid
3934 * so that we don't process it in "finish_end_transaction" since
3935 * the bp that is recorded in our array no longer belongs
3936 * to us (normally we substitute a shadow bp to be processed
3937 * issuing a 'buf_bawrite' on a stale buf_t pointer leads
3938 * to all kinds of problems.
3939 */
3940 blhdr->binfo[i].bnum = (off_t)-1;
3941 continue;
3942 } else {
3943 panic("jnl: end_tr: !!!DANGER!!! bp %p flags (0x%x) not LOCKED & DELWRI\n", bp, buf_flags(bp));
3944 }
3945 }
3946 bsize = buf_size(bp);
3947
3948 buf_setfilter(bp, NULL, NULL, &func, &arg);
3949
3950 blkptr = (char *)&((char *)blhdr)[tbuffer_offset];
3951
3952 sbp = buf_create_shadow_priv(bp, FALSE, (uintptr_t)blkptr, 0, 0);
3953
3954 if (sbp == NULL)
3955 panic("jnl: buf_create_shadow returned NULL");
3956
3957 /*
3958 * copy the data into the transaction buffer...
3959 */
3960 memcpy(blkptr, (char *)buf_dataptr(bp), bsize);
3961
3962 buf_clearflags(bp, B_LOCKED);
3963 buf_markclean(bp);
3964 buf_drop(bp);
3965
3966 /*
3967 * adopt the shadow buffer for this block
3968 */
3969 if (func) {
3970 /*
3971 * transfer FS hook function to the
3972 * shadow buffer... it will get called
3973 * in finish_end_transaction
3974 */
3975 buf_setfilter(sbp, func, arg, NULL, NULL);
3976 }
3977 blhdr->binfo[i].u.bp = sbp;
3978
3979 } else {
3980 // bnum == -1, only true if a block was "killed"
3981 bsize = blhdr->binfo[i].u.bi.bsize;
3982 }
3983 tbuffer_offset += bsize;
3984 }
3985 next = (block_list_header *)((long)blhdr->binfo[0].bnum);
3986 }
3987 /*
3988 * if callback != NULL, we don't want to drop the journal
3989 * lock, or complete end_transaction asynchronously, since
3990 * the caller is expecting the callback to run in the calling
3991 * context
3992 *
3993 * if drop_lock == FALSE, we can't complete end_transaction
3994 * asynchronously
3995 */
3996 if (callback)
3997 drop_lock_early = FALSE;
3998 else
3999 drop_lock_early = drop_lock;
4000
4001 if (drop_lock_early == FALSE)
4002 must_wait = TRUE;
4003
4004 if (drop_lock_early == TRUE) {
4005 journal_unlock(jnl);
4006 drop_lock = FALSE;
4007 }
4008 if (must_wait == TRUE)
4009 ret_val = finish_end_transaction(tr, callback, callback_arg);
4010 else {
4011 thread_t thread = THREAD_NULL;
4012
4013 /*
4014 * fire up a thread to complete processing this transaction
4015 * asynchronously... when it finishes, it will call
4016 * unlock_condition
4017 */
4018 kernel_thread_start((thread_continue_t)finish_end_thread, tr, &thread);
4019 }
4020 KERNEL_DEBUG(0xbbbbc018|DBG_FUNC_END, jnl, tr, ret_val, 0, 0);
4021 done:
4022 if (drop_lock == TRUE) {
4023 journal_unlock(jnl);
4024 }
4025 return (ret_val);
4026 }
4027
4028
4029 static void
4030 finish_end_thread(transaction *tr)
4031 {
4032 throttle_set_thread_io_policy(IOPOL_PASSIVE);
4033
4034 finish_end_transaction(tr, NULL, NULL);
4035
4036 thread_deallocate(current_thread());
4037 thread_terminate(current_thread());
4038 }
4039
4040 static void
4041 write_header_thread(journal *jnl)
4042 {
4043 throttle_set_thread_io_policy(IOPOL_PASSIVE);
4044
4045 if (write_journal_header(jnl, 1, jnl->saved_sequence_num))
4046 jnl->write_header_failed = TRUE;
4047 else
4048 jnl->write_header_failed = FALSE;
4049 unlock_condition(jnl, &jnl->writing_header);
4050
4051 thread_deallocate(current_thread());
4052 thread_terminate(current_thread());
4053 }
4054
4055 static int
4056 finish_end_transaction(transaction *tr, errno_t (*callback)(void*), void *callback_arg)
4057 {
4058 int i, amt;
4059 int ret = 0;
4060 off_t end;
4061 journal *jnl = tr->jnl;
4062 buf_t bp, *bparray;
4063 vnode_t vp;
4064 block_list_header *blhdr=NULL, *next=NULL;
4065 size_t tbuffer_offset;
4066 int bufs_written = 0;
4067 int ret_val = 0;
4068 boolean_t was_vm_privileged = FALSE;
4069
4070 KERNEL_DEBUG(0xbbbbc028|DBG_FUNC_START, jnl, tr, 0, 0, 0);
4071
4072 if (vfs_isswapmount(jnl->fsmount)) {
4073 /*
4074 * if we block waiting for memory, and there is enough pressure to
4075 * cause us to try and create a new swap file, we may end up deadlocking
4076 * due to waiting for the journal on the swap file creation path...
4077 * by making ourselves vm_privileged, we give ourselves the best chance
4078 * of not blocking
4079 */
4080 was_vm_privileged = set_vm_privilege(TRUE);
4081 }
4082 end = jnl->jhdr->end;
4083
4084 for (blhdr = tr->blhdr; blhdr; blhdr = (block_list_header *)((long)blhdr->binfo[0].bnum)) {
4085
4086 amt = blhdr->bytes_used;
4087
4088 blhdr->binfo[0].u.bi.b.sequence_num = tr->sequence_num;
4089
4090 blhdr->checksum = 0;
4091 blhdr->checksum = calc_checksum((char *)blhdr, BLHDR_CHECKSUM_SIZE);
4092
4093 bparray = hfs_malloc(blhdr->num_blocks * sizeof(buf_t));
4094 tbuffer_offset = jnl->jhdr->blhdr_size;
4095
4096 for (i = 1; i < blhdr->num_blocks; i++) {
4097 void (*func)(buf_t, void *);
4098 void *arg;
4099 int32_t bsize;
4100
4101 /*
4102 * finish preparing the shadow buf_t before
4103 * calculating the individual block checksums
4104 */
4105 if (blhdr->binfo[i].bnum != (off_t)-1) {
4106 daddr64_t blkno;
4107 daddr64_t lblkno;
4108
4109 bp = blhdr->binfo[i].u.bp;
4110
4111 vp = buf_vnode(bp);
4112 blkno = buf_blkno(bp);
4113 lblkno = buf_lblkno(bp);
4114
4115 if (vp == NULL && lblkno == blkno) {
4116 printf("jnl: %s: end_tr: bad news! buffer w/null vp and l/blkno = %qd/%qd. aborting the transaction.\n",
4117 jnl->jdev_name, lblkno, blkno);
4118 ret_val = -1;
4119 goto bad_journal;
4120 }
4121
4122 // if the lblkno is the same as blkno and this bp isn't
4123 // associated with the underlying file system device then
4124 // we need to call bmap() to get the actual physical block.
4125 //
4126 if ((lblkno == blkno) && (vp != jnl->fsdev)) {
4127 off_t f_offset;
4128 size_t contig_bytes;
4129
4130 if (hfs_vnop_blktooff(&(struct vnop_blktooff_args){
4131 .a_vp = vp,
4132 .a_lblkno = lblkno,
4133 .a_offset = &f_offset
4134 })) {
4135 printf("jnl: %s: end_tr: vnop_blktooff failed\n", jnl->jdev_name);
4136 ret_val = -1;
4137 goto bad_journal;
4138 }
4139
4140 if (hfs_vnop_blockmap(&(struct vnop_blockmap_args) {
4141 .a_vp = vp,
4142 .a_foffset = f_offset,
4143 .a_size = buf_count(bp),
4144 .a_bpn = &blkno,
4145 .a_run = &contig_bytes
4146 })) {
4147 printf("jnl: %s: end_tr: can't blockmap the buffer\n", jnl->jdev_name);
4148 ret_val = -1;
4149 goto bad_journal;
4150 }
4151
4152 if ((uint32_t)contig_bytes < buf_count(bp)) {
4153 printf("jnl: %s: end_tr: blk not physically contiguous on disk\n", jnl->jdev_name);
4154 ret_val = -1;
4155 goto bad_journal;
4156 }
4157 buf_setblkno(bp, blkno);
4158 }
4159 // update this so we write out the correct physical block number!
4160 blhdr->binfo[i].bnum = (off_t)(blkno);
4161
4162 /*
4163 * pick up the FS hook function (if any) and prepare
4164 * to fire this buffer off in the next pass
4165 */
4166 buf_setfilter(bp, buffer_flushed_callback, tr, &func, &arg);
4167
4168 if (func) {
4169 /*
4170 * call the hook function supplied by the filesystem...
4171 * this needs to happen BEFORE cacl_checksum in case
4172 * the FS morphs the data in the buffer
4173 */
4174 func(bp, arg);
4175 }
4176 bparray[i] = bp;
4177 bsize = buf_size(bp);
4178 blhdr->binfo[i].u.bi.bsize = bsize;
4179 blhdr->binfo[i].u.bi.b.cksum = calc_checksum(&((char *)blhdr)[tbuffer_offset], bsize);
4180 } else {
4181 bparray[i] = NULL;
4182 bsize = blhdr->binfo[i].u.bi.bsize;
4183 blhdr->binfo[i].u.bi.b.cksum = 0;
4184 }
4185 tbuffer_offset += bsize;
4186 }
4187 /*
4188 * if we fired off the journal_write_header asynchronously in
4189 * 'end_transaction', we need to wait for its completion
4190 * before writing the actual journal data
4191 */
4192 wait_condition(jnl, &jnl->writing_header, "finish_end_transaction");
4193
4194 if (jnl->write_header_failed == FALSE)
4195 ret = write_journal_data(jnl, &end, blhdr, amt);
4196 else
4197 ret_val = -1;
4198 /*
4199 * put the bp pointers back so that we can
4200 * make the final pass on them
4201 */
4202 for (i = 1; i < blhdr->num_blocks; i++)
4203 blhdr->binfo[i].u.bp = bparray[i];
4204
4205 hfs_free(bparray, blhdr->num_blocks * sizeof(buf_t));
4206
4207 if (ret_val == -1)
4208 goto bad_journal;
4209
4210 if (ret != amt) {
4211 printf("jnl: %s: end_transaction: only wrote %d of %d bytes to the journal!\n",
4212 jnl->jdev_name, ret, amt);
4213
4214 ret_val = -1;
4215 goto bad_journal;
4216 }
4217 }
4218 jnl->jhdr->end = end; // update where the journal now ends
4219 tr->journal_end = end; // the transaction ends here too
4220
4221 if (tr->journal_start == 0 || tr->journal_end == 0) {
4222 panic("jnl: end_transaction: bad tr journal start/end: 0x%llx 0x%llx\n",
4223 tr->journal_start, tr->journal_end);
4224 }
4225
4226 if (write_journal_header(jnl, 0, jnl->saved_sequence_num) != 0) {
4227 ret_val = -1;
4228 goto bad_journal;
4229 }
4230 /*
4231 * If the caller supplied a callback, call it now that the blocks have been
4232 * written to the journal. This is used by journal_relocate so, for example,
4233 * the file system can change its pointer to the new journal.
4234 */
4235 if (callback != NULL && callback(callback_arg) != 0) {
4236 ret_val = -1;
4237 goto bad_journal;
4238 }
4239
4240 //
4241 // Send a DKIOCUNMAP for the extents trimmed by this transaction, and
4242 // free up the extent list.
4243 //
4244 journal_trim_flush(jnl, tr);
4245
4246 // the buffer_flushed_callback will only be called for the
4247 // real blocks that get flushed so we have to account for
4248 // the block_list_headers here.
4249 //
4250 tr->num_flushed = tr->num_blhdrs * jnl->jhdr->blhdr_size;
4251
4252 lock_condition(jnl, &jnl->asyncIO, "finish_end_transaction");
4253
4254 //
4255 // setup for looping through all the blhdr's.
4256 //
4257 for (blhdr = tr->blhdr; blhdr; blhdr = next) {
4258 uint16_t num_blocks;
4259
4260 /*
4261 * grab this info ahead of issuing the buf_bawrites...
4262 * once the last one goes out, its possible for blhdr
4263 * to be freed (especially if we get preempted) before
4264 * we do the last check of num_blocks or
4265 * grab the next blhdr pointer...
4266 */
4267 next = (block_list_header *)((long)blhdr->binfo[0].bnum);
4268 num_blocks = blhdr->num_blocks;
4269
4270 /*
4271 * we can re-order the buf ptrs because everything is written out already
4272 */
4273 kx_qsort(&blhdr->binfo[1], num_blocks-1, sizeof(block_info), journal_binfo_cmp);
4274
4275 /*
4276 * need to make sure that the loop issuing the buf_bawrite's
4277 * does not touch blhdr once the last buf_bawrite has been
4278 * issued... at that point, we no longer have a legitmate
4279 * reference on the associated storage since it will be
4280 * released upon the completion of that last buf_bawrite
4281 */
4282 for (i = num_blocks-1; i >= 1; i--) {
4283 if (blhdr->binfo[i].bnum != (off_t)-1)
4284 break;
4285 num_blocks--;
4286 }
4287 for (i = 1; i < num_blocks; i++) {
4288
4289 if ((bp = blhdr->binfo[i].u.bp)) {
4290 vp = buf_vnode(bp);
4291
4292 buf_bawrite(bp);
4293
4294 // this undoes the vnode_ref() in journal_modify_block_end()
4295 vnode_rele_ext(vp, 0, 1);
4296
4297 bufs_written++;
4298 }
4299 }
4300 }
4301 if (bufs_written == 0) {
4302 /*
4303 * since we didn't issue any buf_bawrite's, there is no
4304 * async trigger to cause the memory associated with this
4305 * transaction to be freed... so, move it to the garbage
4306 * list now
4307 */
4308 lock_oldstart(jnl);
4309
4310 tr->next = jnl->tr_freeme;
4311 jnl->tr_freeme = tr;
4312
4313 unlock_oldstart(jnl);
4314
4315 unlock_condition(jnl, &jnl->asyncIO);
4316 }
4317
4318 //printf("jnl: end_tr: tr @ 0x%x, jnl-blocks: 0x%llx - 0x%llx. exit!\n",
4319 // tr, tr->journal_start, tr->journal_end);
4320
4321 bad_journal:
4322 if (ret_val == -1) {
4323 abort_transaction(jnl, tr); // cleans up list of extents to be trimmed
4324
4325 /*
4326 * 'flush_aborted' is protected by the flushing condition... we need to
4327 * set it before dropping the condition so that it will be
4328 * noticed in 'end_transaction'... we add this additional
4329 * aborted condition so that we can drop the 'flushing' condition
4330 * before grabbing the journal lock... this avoids a deadlock
4331 * in 'end_transaction' which is holding the journal lock while
4332 * waiting for the 'flushing' condition to clear...
4333 * everyone else will notice the JOURNAL_INVALID flag
4334 */
4335 jnl->flush_aborted = TRUE;
4336
4337 unlock_condition(jnl, &jnl->flushing);
4338 journal_lock(jnl);
4339
4340 jnl->flags |= JOURNAL_INVALID;
4341 jnl->old_start[sizeof(jnl->old_start)/sizeof(jnl->old_start[0]) - 1] &= ~0x8000000000000000LL;
4342
4343 journal_unlock(jnl);
4344 } else
4345 unlock_condition(jnl, &jnl->flushing);
4346
4347 if (vfs_isswapmount(jnl->fsmount) && (was_vm_privileged == FALSE))
4348 set_vm_privilege(FALSE);
4349
4350 KERNEL_DEBUG(0xbbbbc028|DBG_FUNC_END, jnl, tr, bufs_written, ret_val, 0);
4351
4352 return (ret_val);
4353 }
4354
4355
4356 static void
4357 lock_condition(journal *jnl, boolean_t *condition, const char *condition_name)
4358 {
4359
4360 KERNEL_DEBUG(0xbbbbc020|DBG_FUNC_START, jnl, condition, 0, 0, 0);
4361
4362 lock_flush(jnl);
4363
4364 while (*condition == TRUE)
4365 msleep(condition, &jnl->flock, PRIBIO, condition_name, NULL);
4366
4367 *condition = TRUE;
4368 unlock_flush(jnl);
4369
4370 KERNEL_DEBUG(0xbbbbc020|DBG_FUNC_END, jnl, condition, 0, 0, 0);
4371 }
4372
4373 static void
4374 wait_condition(journal *jnl, boolean_t *condition, const char *condition_name)
4375 {
4376
4377 if (*condition == FALSE)
4378 return;
4379
4380 KERNEL_DEBUG(0xbbbbc02c|DBG_FUNC_START, jnl, condition, 0, 0, 0);
4381
4382 lock_flush(jnl);
4383
4384 while (*condition == TRUE)
4385 msleep(condition, &jnl->flock, PRIBIO, condition_name, NULL);
4386
4387 unlock_flush(jnl);
4388
4389 KERNEL_DEBUG(0xbbbbc02c|DBG_FUNC_END, jnl, condition, 0, 0, 0);
4390 }
4391
4392 static void
4393 unlock_condition(journal *jnl, boolean_t *condition)
4394 {
4395 lock_flush(jnl);
4396
4397 *condition = FALSE;
4398 wakeup(condition);
4399
4400 unlock_flush(jnl);
4401 }
4402
4403 static void
4404 abort_transaction(journal *jnl, transaction *tr)
4405 {
4406 block_list_header *blhdr, *next;
4407
4408 // for each block list header, iterate over the blocks then
4409 // free up the memory associated with the block list.
4410 //
4411 // find each of the primary blocks (i.e. the list could
4412 // contain a mix of shadowed and real buf_t's depending
4413 // on when the abort condition was detected) and mark them
4414 // clean and locked in the cache... this at least allows
4415 // the FS a consistent view between it's incore data structures
4416 // and the meta-data held in the cache
4417 //
4418 KERNEL_DEBUG(0xbbbbc034|DBG_FUNC_START, jnl, tr, 0, 0, 0);
4419
4420 for (blhdr = tr->blhdr; blhdr; blhdr = next) {
4421 int i;
4422
4423 for (i = 1; i < blhdr->num_blocks; i++) {
4424 buf_t bp, tbp, sbp;
4425 vnode_t bp_vp;
4426 errno_t errno;
4427
4428 if (blhdr->binfo[i].bnum == (off_t)-1)
4429 continue;
4430
4431 tbp = blhdr->binfo[i].u.bp;
4432
4433 bp_vp = buf_vnode(tbp);
4434
4435 if (buf_shadow(tbp)) {
4436 sbp = tbp;
4437 buf_setfilter(tbp, NULL, NULL, NULL, NULL);
4438 } else {
4439 hfs_assert(ISSET(buf_flags(tbp), B_LOCKED));
4440
4441 sbp = NULL;
4442
4443 do {
4444 errno = buf_acquire(tbp, BAC_REMOVE, 0, 0);
4445 } while (errno == EAGAIN);
4446
4447 if (!errno) {
4448 buf_setfilter(tbp, NULL, NULL, NULL, NULL);
4449 buf_brelse(tbp);
4450 }
4451 }
4452
4453 if (bp_vp) {
4454 errno = buf_meta_bread(bp_vp,
4455 buf_lblkno(tbp),
4456 buf_size(tbp),
4457 NOCRED,
4458 &bp);
4459 if (errno == 0) {
4460 if (sbp == NULL && bp != tbp && (buf_flags(tbp) & B_LOCKED)) {
4461 panic("jnl: abort_tr: got back a different bp! (bp %p should be %p, jnl %p\n",
4462 bp, tbp, jnl);
4463 }
4464 /*
4465 * once the journal has been marked INVALID and aborted,
4466 * NO meta data can be written back to the disk, so
4467 * mark the buf_t clean and make sure it's locked in the cache
4468 * note: if we found a shadow, the real buf_t needs to be relocked
4469 */
4470 buf_setflags(bp, B_LOCKED);
4471 buf_markclean(bp);
4472 buf_brelse(bp);
4473
4474 KERNEL_DEBUG(0xbbbbc034|DBG_FUNC_NONE, jnl, tr, bp, 0, 0);
4475
4476 /*
4477 * this undoes the vnode_ref() in journal_modify_block_end()
4478 */
4479 vnode_rele_ext(bp_vp, 0, 1);
4480 } else {
4481 printf("jnl: %s: abort_tr: could not find block %lld for vnode!\n",
4482 jnl->jdev_name, blhdr->binfo[i].bnum);
4483 if (bp) {
4484 buf_brelse(bp);
4485 }
4486 }
4487 }
4488 if (sbp)
4489 buf_brelse(sbp);
4490 }
4491 next = (block_list_header *)((long)blhdr->binfo[0].bnum);
4492
4493 // we can free blhdr here since we won't need it any more
4494 blhdr->binfo[0].bnum = 0xdeadc0de;
4495 hfs_free(blhdr, tr->tbuffer_size);
4496 }
4497
4498 /*
4499 * If the transaction we're aborting was the async transaction, then
4500 * tell the current transaction that there is no pending trim
4501 * any more.
4502 */
4503 lck_rw_lock_exclusive(&jnl->trim_lock);
4504 if (jnl->async_trim == &tr->trim)
4505 jnl->async_trim = NULL;
4506 lck_rw_unlock_exclusive(&jnl->trim_lock);
4507
4508
4509 if (tr->trim.extents) {
4510 hfs_free(tr->trim.extents, tr->trim.allocated_count * sizeof(dk_extent_t));
4511 }
4512 tr->trim.allocated_count = 0;
4513 tr->trim.extent_count = 0;
4514 tr->trim.extents = NULL;
4515 tr->tbuffer = NULL;
4516 tr->blhdr = NULL;
4517 tr->total_bytes = 0xdbadc0de;
4518 hfs_free(tr, sizeof(*tr));
4519
4520 KERNEL_DEBUG(0xbbbbc034|DBG_FUNC_END, jnl, tr, 0, 0, 0);
4521 }
4522
4523
4524 int
4525 journal_end_transaction(journal *jnl)
4526 {
4527 int ret;
4528 transaction *tr;
4529
4530 CHECK_JOURNAL(jnl);
4531
4532 free_old_stuff(jnl);
4533
4534 if ((jnl->flags & JOURNAL_INVALID) && jnl->owner == NULL) {
4535 return 0;
4536 }
4537
4538 if (jnl->owner != current_thread()) {
4539 panic("jnl: end_tr: I'm not the owner! jnl %p, owner %p, curact %p\n",
4540 jnl, jnl->owner, current_thread());
4541 }
4542 jnl->nested_count--;
4543
4544 if (jnl->nested_count > 0) {
4545 return 0;
4546 } else if (jnl->nested_count < 0) {
4547 panic("jnl: jnl @ %p has negative nested count (%d). bad boy.\n", jnl, jnl->nested_count);
4548 }
4549
4550 if (jnl->flags & JOURNAL_INVALID) {
4551 if (jnl->active_tr) {
4552 if (jnl->cur_tr != NULL) {
4553 panic("jnl: journal @ %p has active tr (%p) and cur tr (%p)\n",
4554 jnl, jnl->active_tr, jnl->cur_tr);
4555 }
4556 tr = jnl->active_tr;
4557 jnl->active_tr = NULL;
4558
4559 abort_transaction(jnl, tr);
4560 }
4561 journal_unlock(jnl);
4562
4563 return EINVAL;
4564 }
4565
4566 tr = jnl->active_tr;
4567 CHECK_TRANSACTION(tr);
4568
4569 // clear this out here so that when check_free_space() calls
4570 // the FS flush function, we don't panic in journal_flush()
4571 // if the FS were to call that. note: check_free_space() is
4572 // called from end_transaction().
4573 //
4574 jnl->active_tr = NULL;
4575
4576 /* Examine the force-journal-flush state in the active txn */
4577 if (tr->flush_on_completion == TRUE) {
4578 /*
4579 * If the FS requested it, disallow group commit and force the
4580 * transaction out to disk immediately.
4581 */
4582 ret = end_transaction(tr, 1, NULL, NULL, TRUE, TRUE);
4583 }
4584 else {
4585 /* in the common path we can simply use the double-buffered journal */
4586 ret = end_transaction(tr, 0, NULL, NULL, TRUE, FALSE);
4587 }
4588
4589 return ret;
4590 }
4591
4592
4593 /*
4594 * Flush the contents of the journal to the disk.
4595 *
4596 * Input:
4597 * wait_for_IO -
4598 * If TRUE, wait to write in-memory journal to the disk
4599 * consistently, and also wait to write all asynchronous
4600 * metadata blocks to its corresponding locations
4601 * consistently on the disk. This means that the journal
4602 * is empty at this point and does not contain any
4603 * transactions. This is overkill in normal scenarios
4604 * but is useful whenever the metadata blocks are required
4605 * to be consistent on-disk instead of just the journal
4606 * being consistent; like before live verification
4607 * and live volume resizing.
4608 *
4609 * If FALSE, only wait to write in-memory journal to the
4610 * disk consistently. This means that the journal still
4611 * contains uncommitted transactions and the file system
4612 * metadata blocks in the journal transactions might be
4613 * written asynchronously to the disk. But there is no
4614 * guarantee that they are written to the disk before
4615 * returning to the caller. Note that this option is
4616 * sufficient for file system data integrity as it
4617 * guarantees consistent journal content on the disk.
4618 */
4619 int
4620 journal_flush(journal *jnl, journal_flush_options_t options)
4621 {
4622 boolean_t drop_lock = FALSE;
4623 errno_t error = 0;
4624 uint32_t flush_count = 0;
4625
4626 CHECK_JOURNAL(jnl);
4627
4628 free_old_stuff(jnl);
4629
4630 if (jnl->flags & JOURNAL_INVALID) {
4631 return -1;
4632 }
4633
4634 KDBG(DBG_JOURNAL_FLUSH | DBG_FUNC_START, jnl);
4635
4636 if (jnl->owner != current_thread()) {
4637 journal_lock(jnl);
4638 drop_lock = TRUE;
4639 }
4640
4641 if (ISSET(options, JOURNAL_FLUSH_FULL))
4642 flush_count = jnl->flush_counter;
4643
4644 // if we're not active, flush any buffered transactions
4645 if (jnl->active_tr == NULL && jnl->cur_tr) {
4646 transaction *tr = jnl->cur_tr;
4647
4648 jnl->cur_tr = NULL;
4649
4650 if (ISSET(options, JOURNAL_WAIT_FOR_IO)) {
4651 wait_condition(jnl, &jnl->flushing, "journal_flush");
4652 wait_condition(jnl, &jnl->asyncIO, "journal_flush");
4653 }
4654 /*
4655 * "end_transction" will wait for any current async flush
4656 * to complete, before flushing "cur_tr"... because we've
4657 * specified the 'must_wait' arg as TRUE, it will then
4658 * synchronously flush the "cur_tr"
4659 */
4660 end_transaction(tr, 1, NULL, NULL, drop_lock, TRUE); // force it to get flushed
4661
4662 } else {
4663 if (drop_lock == TRUE) {
4664 journal_unlock(jnl);
4665 }
4666
4667 /* Because of pipelined journal, the journal transactions
4668 * might be in process of being flushed on another thread.
4669 * If there is nothing to flush currently, we should
4670 * synchronize ourselves with the pipelined journal thread
4671 * to ensure that all inflight transactions, if any, are
4672 * flushed before we return success to caller.
4673 */
4674 wait_condition(jnl, &jnl->flushing, "journal_flush");
4675 }
4676 if (ISSET(options, JOURNAL_WAIT_FOR_IO)) {
4677 wait_condition(jnl, &jnl->asyncIO, "journal_flush");
4678 }
4679
4680 if (ISSET(options, JOURNAL_FLUSH_FULL)) {
4681
4682 dk_synchronize_t sync_request = {
4683 .options = 0,
4684 };
4685
4686 // We need a full cache flush. If it has not been done, do it here.
4687 if (flush_count == jnl->flush_counter)
4688 error = VNOP_IOCTL(jnl->jdev, DKIOCSYNCHRONIZE, (caddr_t)&sync_request, FWRITE, vfs_context_kernel());
4689
4690 // If external journal partition is enabled, flush filesystem data partition.
4691 if (jnl->jdev != jnl->fsdev)
4692 error = VNOP_IOCTL(jnl->fsdev, DKIOCSYNCHRONIZE, (caddr_t)&sync_request, FWRITE, vfs_context_kernel());
4693
4694 }
4695
4696 KDBG(DBG_JOURNAL_FLUSH | DBG_FUNC_END, jnl);
4697
4698 return 0;
4699 }
4700
4701 int
4702 journal_active(journal *jnl)
4703 {
4704 if (jnl->flags & JOURNAL_INVALID) {
4705 return -1;
4706 }
4707
4708 return (jnl->active_tr == NULL) ? 0 : 1;
4709 }
4710
4711 void *
4712 journal_owner(journal *jnl)
4713 {
4714 return jnl->owner;
4715 }
4716
4717 int journal_uses_fua(journal *jnl)
4718 {
4719 if (jnl->flags & JOURNAL_DO_FUA_WRITES)
4720 return 1;
4721 return 0;
4722 }
4723
4724 /*
4725 * Relocate the journal.
4726 *
4727 * You provide the new starting offset and size for the journal. You may
4728 * optionally provide a new tbuffer_size; passing zero defaults to not
4729 * changing the tbuffer size except as needed to fit within the new journal
4730 * size.
4731 *
4732 * You must have already started a transaction. The transaction may contain
4733 * modified blocks (such as those needed to deallocate the old journal,
4734 * allocate the new journal, and update the location and size of the journal
4735 * in filesystem-private structures). Any transactions prior to the active
4736 * transaction will be flushed to the old journal. The new journal will be
4737 * initialized, and the blocks from the active transaction will be written to
4738 * the new journal.
4739 *
4740 * The caller will need to update the structures that identify the location
4741 * and size of the journal. These updates should be made in the supplied
4742 * callback routine. These updates must NOT go into a transaction. You should
4743 * force these updates to the media before returning from the callback. In the
4744 * even of a crash, either the old journal will be found, with an empty journal,
4745 * or the new journal will be found with the contents of the active transaction.
4746 *
4747 * Upon return from the callback, the blocks from the active transaction are
4748 * written to their normal locations on disk.
4749 *
4750 * (Remember that we have to ensure that blocks get committed to the journal
4751 * before being committed to their normal locations. But the blocks don't count
4752 * as committed until the new journal is pointed at.)
4753 *
4754 * Upon return, there is still an active transaction: newly allocated, and
4755 * with no modified blocks. Call journal_end_transaction as normal. You may
4756 * modifiy additional blocks before calling journal_end_transaction, and those
4757 * blocks will (eventually) go to the relocated journal.
4758 *
4759 * Inputs:
4760 * jnl The (opened) journal to relocate.
4761 * offset The new journal byte offset (from start of the journal device).
4762 * journal_size The size, in bytes, of the new journal.
4763 * tbuffer_size The new desired transaction buffer size. Pass zero to keep
4764 * the same size as the current journal. The size will be
4765 * modified as needed to fit the new journal.
4766 * callback Routine called after the new journal has been initialized,
4767 * and the active transaction written to the new journal, but
4768 * before the blocks are written to their normal locations.
4769 * Pass NULL for no callback.
4770 * callback_arg An argument passed to the callback routine.
4771 *
4772 * Result:
4773 * 0 No errors
4774 * EINVAL The offset is not block aligned
4775 * EINVAL The journal_size is not a multiple of the block size
4776 * EINVAL The journal is invalid
4777 * (any) An error returned by journal_flush.
4778 *
4779 */
4780 int journal_relocate(journal *jnl, off_t offset, off_t journal_size, int32_t tbuffer_size,
4781 errno_t (*callback)(void *), void *callback_arg)
4782 {
4783 int ret;
4784 transaction *tr;
4785 size_t i = 0;
4786
4787 /*
4788 * Sanity check inputs, and adjust the size of the transaction buffer.
4789 */
4790 if (jnl->jhdr->jhdr_size == 0) {
4791 printf("jnl: %s: relocate: bad jhdr size (%d)\n", jnl->jdev_name, jnl->jhdr->jhdr_size);
4792 return EINVAL;
4793 }
4794
4795 if ((offset % jnl->jhdr->jhdr_size) != 0) {
4796 printf("jnl: %s: relocate: offset 0x%llx is not an even multiple of block size 0x%x\n",
4797 jnl->jdev_name, offset, jnl->jhdr->jhdr_size);
4798 return EINVAL;
4799 }
4800 if ((journal_size % jnl->jhdr->jhdr_size) != 0) {
4801 printf("jnl: %s: relocate: journal size 0x%llx is not an even multiple of block size 0x%x\n",
4802 jnl->jdev_name, journal_size, jnl->jhdr->jhdr_size);
4803 return EINVAL;
4804 }
4805
4806 CHECK_JOURNAL(jnl);
4807
4808 /* Guarantee we own the active transaction. */
4809 if (jnl->flags & JOURNAL_INVALID) {
4810 return EINVAL;
4811 }
4812 if (jnl->owner != current_thread()) {
4813 panic("jnl: relocate: Not the owner! jnl %p, owner %p, curact %p\n",
4814 jnl, jnl->owner, current_thread());
4815 }
4816
4817 if (tbuffer_size == 0)
4818 tbuffer_size = jnl->tbuffer_size;
4819 size_up_tbuffer(jnl, tbuffer_size, jnl->jhdr->jhdr_size);
4820
4821 /*
4822 * Flush any non-active transactions. We have to temporarily hide the
4823 * active transaction to make journal_flush flush out non-active but
4824 * current (unwritten) transactions.
4825 */
4826 tr = jnl->active_tr;
4827 CHECK_TRANSACTION(tr);
4828 jnl->active_tr = NULL;
4829 ret = journal_flush(jnl, JOURNAL_WAIT_FOR_IO);
4830 jnl->active_tr = tr;
4831
4832 if (ret) {
4833 return ret;
4834 }
4835 wait_condition(jnl, &jnl->flushing, "end_transaction");
4836
4837 /*
4838 * At this point, we have completely flushed the contents of the current
4839 * journal to disk (and have asynchronously written all of the txns to
4840 * their actual desired locations). As a result, we can (and must) clear
4841 * out the old_start array. If we do not, then if the last written transaction
4842 * started at the beginning of the journal (starting 1 block into the
4843 * journal file) it could confuse the buffer_flushed callback. This is
4844 * because we're about to reset the start/end pointers of the journal header
4845 * below.
4846 */
4847 lock_oldstart(jnl);
4848 for (i = 0; i < sizeof (jnl->old_start) / sizeof(jnl->old_start[0]); i++) {
4849 jnl->old_start[i] = 0;
4850 }
4851 unlock_oldstart(jnl);
4852
4853 /* Update the journal's offset and size in memory. */
4854 jnl->jdev_offset = offset;
4855 jnl->jhdr->start = jnl->jhdr->end = jnl->jhdr->jhdr_size;
4856 jnl->jhdr->size = journal_size;
4857 jnl->active_start = jnl->jhdr->start;
4858
4859 /*
4860 * Force the active transaction to be written to the new journal. Call the
4861 * supplied callback after the blocks have been written to the journal, but
4862 * before they get written to their normal on-disk locations.
4863 */
4864 jnl->active_tr = NULL;
4865 ret = end_transaction(tr, 1, callback, callback_arg, FALSE, TRUE);
4866 if (ret) {
4867 printf("jnl: %s: relocate: end_transaction failed (%d)\n", jnl->jdev_name, ret);
4868 goto bad_journal;
4869 }
4870
4871 /*
4872 * Create a new, empty transaction to be the active transaction. This way
4873 * our caller can use journal_end_transaction as usual.
4874 */
4875 ret = journal_allocate_transaction(jnl);
4876 if (ret) {
4877 printf("jnl: %s: relocate: could not allocate new transaction (%d)\n", jnl->jdev_name, ret);
4878 goto bad_journal;
4879 }
4880
4881 return 0;
4882
4883 bad_journal:
4884 jnl->flags |= JOURNAL_INVALID;
4885 abort_transaction(jnl, tr);
4886 return ret;
4887 }
4888
4889 uint32_t journal_current_txn(journal *jnl)
4890 {
4891 return jnl->sequence_num + (jnl->active_tr || jnl->cur_tr ? 0 : 1);
4892 }