]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/dmu_tx.c
Illumos 5314 - Remove "dbuf phys" db->db_data pointer aliases in ZFS
[mirror_zfs.git] / module / zfs / dmu_tx.c
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
428870ff 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
22cd4a46 23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
295304be 24 * Copyright (c) 2013 by Delphix. All rights reserved.
22cd4a46 25 */
34dc7c2f 26
34dc7c2f
BB
27#include <sys/dmu.h>
28#include <sys/dmu_impl.h>
29#include <sys/dbuf.h>
30#include <sys/dmu_tx.h>
31#include <sys/dmu_objset.h>
32#include <sys/dsl_dataset.h> /* for dsl_dataset_block_freeable() */
33#include <sys/dsl_dir.h> /* for dsl_dir_tempreserve_*() */
34#include <sys/dsl_pool.h>
35#include <sys/zap_impl.h> /* for fzap_default_block_shift */
36#include <sys/spa.h>
428870ff
BB
37#include <sys/sa.h>
38#include <sys/sa_impl.h>
34dc7c2f 39#include <sys/zfs_context.h>
428870ff 40#include <sys/varargs.h>
49ee64e5 41#include <sys/trace_dmu.h>
34dc7c2f
BB
42
43typedef void (*dmu_tx_hold_func_t)(dmu_tx_t *tx, struct dnode *dn,
44 uint64_t arg1, uint64_t arg2);
45
570827e1
BB
46dmu_tx_stats_t dmu_tx_stats = {
47 { "dmu_tx_assigned", KSTAT_DATA_UINT64 },
48 { "dmu_tx_delay", KSTAT_DATA_UINT64 },
49 { "dmu_tx_error", KSTAT_DATA_UINT64 },
50 { "dmu_tx_suspended", KSTAT_DATA_UINT64 },
51 { "dmu_tx_group", KSTAT_DATA_UINT64 },
570827e1
BB
52 { "dmu_tx_memory_reserve", KSTAT_DATA_UINT64 },
53 { "dmu_tx_memory_reclaim", KSTAT_DATA_UINT64 },
570827e1 54 { "dmu_tx_dirty_throttle", KSTAT_DATA_UINT64 },
e8b96c60
MA
55 { "dmu_tx_dirty_delay", KSTAT_DATA_UINT64 },
56 { "dmu_tx_dirty_over_max", KSTAT_DATA_UINT64 },
570827e1
BB
57 { "dmu_tx_quota", KSTAT_DATA_UINT64 },
58};
59
60static kstat_t *dmu_tx_ksp;
34dc7c2f
BB
61
62dmu_tx_t *
63dmu_tx_create_dd(dsl_dir_t *dd)
64{
79c76d5b 65 dmu_tx_t *tx = kmem_zalloc(sizeof (dmu_tx_t), KM_SLEEP);
34dc7c2f 66 tx->tx_dir = dd;
6f1ffb06 67 if (dd != NULL)
34dc7c2f
BB
68 tx->tx_pool = dd->dd_pool;
69 list_create(&tx->tx_holds, sizeof (dmu_tx_hold_t),
70 offsetof(dmu_tx_hold_t, txh_node));
428870ff
BB
71 list_create(&tx->tx_callbacks, sizeof (dmu_tx_callback_t),
72 offsetof(dmu_tx_callback_t, dcb_node));
e8b96c60 73 tx->tx_start = gethrtime();
1c5de20a 74#ifdef DEBUG_DMU_TX
34dc7c2f
BB
75 refcount_create(&tx->tx_space_written);
76 refcount_create(&tx->tx_space_freed);
77#endif
78 return (tx);
79}
80
81dmu_tx_t *
82dmu_tx_create(objset_t *os)
83{
428870ff 84 dmu_tx_t *tx = dmu_tx_create_dd(os->os_dsl_dataset->ds_dir);
34dc7c2f 85 tx->tx_objset = os;
428870ff 86 tx->tx_lastsnap_txg = dsl_dataset_prev_snap_txg(os->os_dsl_dataset);
34dc7c2f
BB
87 return (tx);
88}
89
90dmu_tx_t *
91dmu_tx_create_assigned(struct dsl_pool *dp, uint64_t txg)
92{
93 dmu_tx_t *tx = dmu_tx_create_dd(NULL);
94
95 ASSERT3U(txg, <=, dp->dp_tx.tx_open_txg);
96 tx->tx_pool = dp;
97 tx->tx_txg = txg;
98 tx->tx_anyobj = TRUE;
99
100 return (tx);
101}
102
103int
104dmu_tx_is_syncing(dmu_tx_t *tx)
105{
106 return (tx->tx_anyobj);
107}
108
109int
110dmu_tx_private_ok(dmu_tx_t *tx)
111{
112 return (tx->tx_anyobj);
113}
114
115static dmu_tx_hold_t *
116dmu_tx_hold_object_impl(dmu_tx_t *tx, objset_t *os, uint64_t object,
117 enum dmu_tx_hold_type type, uint64_t arg1, uint64_t arg2)
118{
119 dmu_tx_hold_t *txh;
120 dnode_t *dn = NULL;
121 int err;
122
123 if (object != DMU_NEW_OBJECT) {
428870ff 124 err = dnode_hold(os, object, tx, &dn);
34dc7c2f
BB
125 if (err) {
126 tx->tx_err = err;
127 return (NULL);
128 }
129
130 if (err == 0 && tx->tx_txg != 0) {
131 mutex_enter(&dn->dn_mtx);
132 /*
133 * dn->dn_assigned_txg == tx->tx_txg doesn't pose a
134 * problem, but there's no way for it to happen (for
135 * now, at least).
136 */
137 ASSERT(dn->dn_assigned_txg == 0);
138 dn->dn_assigned_txg = tx->tx_txg;
139 (void) refcount_add(&dn->dn_tx_holds, tx);
140 mutex_exit(&dn->dn_mtx);
141 }
142 }
143
79c76d5b 144 txh = kmem_zalloc(sizeof (dmu_tx_hold_t), KM_SLEEP);
34dc7c2f
BB
145 txh->txh_tx = tx;
146 txh->txh_dnode = dn;
1c5de20a 147#ifdef DEBUG_DMU_TX
34dc7c2f
BB
148 txh->txh_type = type;
149 txh->txh_arg1 = arg1;
150 txh->txh_arg2 = arg2;
151#endif
152 list_insert_tail(&tx->tx_holds, txh);
153
154 return (txh);
155}
156
157void
158dmu_tx_add_new_object(dmu_tx_t *tx, objset_t *os, uint64_t object)
159{
160 /*
161 * If we're syncing, they can manipulate any object anyhow, and
162 * the hold on the dnode_t can cause problems.
163 */
164 if (!dmu_tx_is_syncing(tx)) {
165 (void) dmu_tx_hold_object_impl(tx, os,
166 object, THT_NEWOBJECT, 0, 0);
167 }
168}
169
170static int
171dmu_tx_check_ioerr(zio_t *zio, dnode_t *dn, int level, uint64_t blkid)
172{
173 int err;
174 dmu_buf_impl_t *db;
175
176 rw_enter(&dn->dn_struct_rwlock, RW_READER);
177 db = dbuf_hold_level(dn, level, blkid, FTAG);
178 rw_exit(&dn->dn_struct_rwlock);
179 if (db == NULL)
2e528b49 180 return (SET_ERROR(EIO));
34dc7c2f
BB
181 err = dbuf_read(db, zio, DB_RF_CANFAIL | DB_RF_NOPREFETCH);
182 dbuf_rele(db, FTAG);
183 return (err);
184}
185
9babb374 186static void
428870ff
BB
187dmu_tx_count_twig(dmu_tx_hold_t *txh, dnode_t *dn, dmu_buf_impl_t *db,
188 int level, uint64_t blkid, boolean_t freeable, uint64_t *history)
9babb374 189{
428870ff
BB
190 objset_t *os = dn->dn_objset;
191 dsl_dataset_t *ds = os->os_dsl_dataset;
192 int epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
193 dmu_buf_impl_t *parent = NULL;
194 blkptr_t *bp = NULL;
195 uint64_t space;
196
197 if (level >= dn->dn_nlevels || history[level] == blkid)
9babb374
BB
198 return;
199
428870ff 200 history[level] = blkid;
9babb374 201
428870ff
BB
202 space = (level == 0) ? dn->dn_datablksz : (1ULL << dn->dn_indblkshift);
203
204 if (db == NULL || db == dn->dn_dbuf) {
205 ASSERT(level != 0);
206 db = NULL;
207 } else {
572e2857 208 ASSERT(DB_DNODE(db) == dn);
428870ff
BB
209 ASSERT(db->db_level == level);
210 ASSERT(db->db.db_size == space);
211 ASSERT(db->db_blkid == blkid);
212 bp = db->db_blkptr;
213 parent = db->db_parent;
9babb374
BB
214 }
215
428870ff
BB
216 freeable = (bp && (freeable ||
217 dsl_dataset_block_freeable(ds, bp, bp->blk_birth)));
9babb374 218
428870ff
BB
219 if (freeable)
220 txh->txh_space_tooverwrite += space;
221 else
222 txh->txh_space_towrite += space;
223 if (bp)
224 txh->txh_space_tounref += bp_get_dsize(os->os_spa, bp);
225
226 dmu_tx_count_twig(txh, dn, parent, level + 1,
227 blkid >> epbs, freeable, history);
9babb374
BB
228}
229
34dc7c2f
BB
230/* ARGSUSED */
231static void
232dmu_tx_count_write(dmu_tx_hold_t *txh, uint64_t off, uint64_t len)
233{
234 dnode_t *dn = txh->txh_dnode;
235 uint64_t start, end, i;
236 int min_bs, max_bs, min_ibs, max_ibs, epbs, bits;
237 int err = 0;
d6320ddb 238 int l;
34dc7c2f
BB
239
240 if (len == 0)
241 return;
242
243 min_bs = SPA_MINBLOCKSHIFT;
244 max_bs = SPA_MAXBLOCKSHIFT;
245 min_ibs = DN_MIN_INDBLKSHIFT;
246 max_ibs = DN_MAX_INDBLKSHIFT;
247
34dc7c2f 248 if (dn) {
428870ff 249 uint64_t history[DN_MAX_LEVELS];
9babb374
BB
250 int nlvls = dn->dn_nlevels;
251 int delta;
252
253 /*
254 * For i/o error checking, read the first and last level-0
255 * blocks (if they are not aligned), and all the level-1 blocks.
256 */
34dc7c2f 257 if (dn->dn_maxblkid == 0) {
9babb374
BB
258 delta = dn->dn_datablksz;
259 start = (off < dn->dn_datablksz) ? 0 : 1;
260 end = (off+len <= dn->dn_datablksz) ? 0 : 1;
261 if (start == 0 && (off > 0 || len < dn->dn_datablksz)) {
b128c09f
BB
262 err = dmu_tx_check_ioerr(NULL, dn, 0, 0);
263 if (err)
264 goto out;
9babb374 265 delta -= off;
b128c09f 266 }
34dc7c2f
BB
267 } else {
268 zio_t *zio = zio_root(dn->dn_objset->os_spa,
269 NULL, NULL, ZIO_FLAG_CANFAIL);
270
271 /* first level-0 block */
272 start = off >> dn->dn_datablkshift;
273 if (P2PHASE(off, dn->dn_datablksz) ||
274 len < dn->dn_datablksz) {
275 err = dmu_tx_check_ioerr(zio, dn, 0, start);
276 if (err)
277 goto out;
278 }
279
280 /* last level-0 block */
281 end = (off+len-1) >> dn->dn_datablkshift;
b128c09f 282 if (end != start && end <= dn->dn_maxblkid &&
34dc7c2f
BB
283 P2PHASE(off+len, dn->dn_datablksz)) {
284 err = dmu_tx_check_ioerr(zio, dn, 0, end);
285 if (err)
286 goto out;
287 }
288
289 /* level-1 blocks */
9babb374
BB
290 if (nlvls > 1) {
291 int shft = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
292 for (i = (start>>shft)+1; i < end>>shft; i++) {
34dc7c2f
BB
293 err = dmu_tx_check_ioerr(zio, dn, 1, i);
294 if (err)
295 goto out;
296 }
297 }
298
299 err = zio_wait(zio);
300 if (err)
301 goto out;
9babb374 302 delta = P2NPHASE(off, dn->dn_datablksz);
34dc7c2f 303 }
34dc7c2f 304
295304be 305 min_ibs = max_ibs = dn->dn_indblkshift;
9babb374
BB
306 if (dn->dn_maxblkid > 0) {
307 /*
308 * The blocksize can't change,
309 * so we can make a more precise estimate.
310 */
311 ASSERT(dn->dn_datablkshift != 0);
34dc7c2f 312 min_bs = max_bs = dn->dn_datablkshift;
9babb374
BB
313 }
314
315 /*
316 * If this write is not off the end of the file
317 * we need to account for overwrites/unref.
318 */
428870ff 319 if (start <= dn->dn_maxblkid) {
d6320ddb 320 for (l = 0; l < DN_MAX_LEVELS; l++)
428870ff
BB
321 history[l] = -1ULL;
322 }
9babb374 323 while (start <= dn->dn_maxblkid) {
9babb374
BB
324 dmu_buf_impl_t *db;
325
326 rw_enter(&dn->dn_struct_rwlock, RW_READER);
428870ff 327 err = dbuf_hold_impl(dn, 0, start, FALSE, FTAG, &db);
9babb374 328 rw_exit(&dn->dn_struct_rwlock);
428870ff
BB
329
330 if (err) {
331 txh->txh_tx->tx_err = err;
332 return;
9babb374 333 }
428870ff
BB
334
335 dmu_tx_count_twig(txh, dn, db, 0, start, B_FALSE,
336 history);
9babb374
BB
337 dbuf_rele(db, FTAG);
338 if (++start > end) {
339 /*
340 * Account for new indirects appearing
341 * before this IO gets assigned into a txg.
342 */
343 bits = 64 - min_bs;
344 epbs = min_ibs - SPA_BLKPTRSHIFT;
345 for (bits -= epbs * (nlvls - 1);
346 bits >= 0; bits -= epbs)
347 txh->txh_fudge += 1ULL << max_ibs;
348 goto out;
349 }
350 off += delta;
351 if (len >= delta)
352 len -= delta;
353 delta = dn->dn_datablksz;
354 }
34dc7c2f
BB
355 }
356
357 /*
358 * 'end' is the last thing we will access, not one past.
359 * This way we won't overflow when accessing the last byte.
360 */
361 start = P2ALIGN(off, 1ULL << max_bs);
362 end = P2ROUNDUP(off + len, 1ULL << max_bs) - 1;
363 txh->txh_space_towrite += end - start + 1;
364
365 start >>= min_bs;
366 end >>= min_bs;
367
368 epbs = min_ibs - SPA_BLKPTRSHIFT;
369
370 /*
371 * The object contains at most 2^(64 - min_bs) blocks,
372 * and each indirect level maps 2^epbs.
373 */
374 for (bits = 64 - min_bs; bits >= 0; bits -= epbs) {
375 start >>= epbs;
376 end >>= epbs;
9babb374 377 ASSERT3U(end, >=, start);
34dc7c2f 378 txh->txh_space_towrite += (end - start + 1) << max_ibs;
9babb374
BB
379 if (start != 0) {
380 /*
381 * We also need a new blkid=0 indirect block
382 * to reference any existing file data.
383 */
384 txh->txh_space_towrite += 1ULL << max_ibs;
385 }
34dc7c2f
BB
386 }
387
34dc7c2f 388out:
9babb374
BB
389 if (txh->txh_space_towrite + txh->txh_space_tooverwrite >
390 2 * DMU_MAX_ACCESS)
2e528b49 391 err = SET_ERROR(EFBIG);
9babb374 392
34dc7c2f
BB
393 if (err)
394 txh->txh_tx->tx_err = err;
395}
396
397static void
398dmu_tx_count_dnode(dmu_tx_hold_t *txh)
399{
400 dnode_t *dn = txh->txh_dnode;
572e2857 401 dnode_t *mdn = DMU_META_DNODE(txh->txh_tx->tx_objset);
34dc7c2f
BB
402 uint64_t space = mdn->dn_datablksz +
403 ((mdn->dn_nlevels-1) << mdn->dn_indblkshift);
404
405 if (dn && dn->dn_dbuf->db_blkptr &&
406 dsl_dataset_block_freeable(dn->dn_objset->os_dsl_dataset,
428870ff 407 dn->dn_dbuf->db_blkptr, dn->dn_dbuf->db_blkptr->blk_birth)) {
34dc7c2f 408 txh->txh_space_tooverwrite += space;
9babb374 409 txh->txh_space_tounref += space;
34dc7c2f
BB
410 } else {
411 txh->txh_space_towrite += space;
412 if (dn && dn->dn_dbuf->db_blkptr)
413 txh->txh_space_tounref += space;
414 }
415}
416
417void
418dmu_tx_hold_write(dmu_tx_t *tx, uint64_t object, uint64_t off, int len)
419{
420 dmu_tx_hold_t *txh;
421
422 ASSERT(tx->tx_txg == 0);
ded576e2 423 ASSERT(len <= DMU_MAX_ACCESS);
34dc7c2f
BB
424 ASSERT(len == 0 || UINT64_MAX - off >= len - 1);
425
426 txh = dmu_tx_hold_object_impl(tx, tx->tx_objset,
427 object, THT_WRITE, off, len);
428 if (txh == NULL)
429 return;
430
431 dmu_tx_count_write(txh, off, len);
432 dmu_tx_count_dnode(txh);
433}
434
435static void
436dmu_tx_count_free(dmu_tx_hold_t *txh, uint64_t off, uint64_t len)
437{
b128c09f
BB
438 uint64_t blkid, nblks, lastblk;
439 uint64_t space = 0, unref = 0, skipped = 0;
34dc7c2f
BB
440 dnode_t *dn = txh->txh_dnode;
441 dsl_dataset_t *ds = dn->dn_objset->os_dsl_dataset;
442 spa_t *spa = txh->txh_tx->tx_pool->dp_spa;
b128c09f 443 int epbs;
ff80d9b1 444 uint64_t l0span = 0, nl1blks = 0;
34dc7c2f 445
b128c09f 446 if (dn->dn_nlevels == 0)
34dc7c2f
BB
447 return;
448
449 /*
b128c09f 450 * The struct_rwlock protects us against dn_nlevels
34dc7c2f
BB
451 * changing, in case (against all odds) we manage to dirty &
452 * sync out the changes after we check for being dirty.
428870ff 453 * Also, dbuf_hold_impl() wants us to have the struct_rwlock.
34dc7c2f
BB
454 */
455 rw_enter(&dn->dn_struct_rwlock, RW_READER);
b128c09f
BB
456 epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
457 if (dn->dn_maxblkid == 0) {
34dc7c2f
BB
458 if (off == 0 && len >= dn->dn_datablksz) {
459 blkid = 0;
460 nblks = 1;
461 } else {
462 rw_exit(&dn->dn_struct_rwlock);
463 return;
464 }
465 } else {
466 blkid = off >> dn->dn_datablkshift;
b128c09f 467 nblks = (len + dn->dn_datablksz - 1) >> dn->dn_datablkshift;
34dc7c2f 468
383fc4a9 469 if (blkid > dn->dn_maxblkid) {
34dc7c2f
BB
470 rw_exit(&dn->dn_struct_rwlock);
471 return;
472 }
b128c09f 473 if (blkid + nblks > dn->dn_maxblkid)
383fc4a9 474 nblks = dn->dn_maxblkid - blkid + 1;
34dc7c2f 475
34dc7c2f 476 }
ff80d9b1 477 l0span = nblks; /* save for later use to calc level > 1 overhead */
b128c09f 478 if (dn->dn_nlevels == 1) {
34dc7c2f
BB
479 int i;
480 for (i = 0; i < nblks; i++) {
481 blkptr_t *bp = dn->dn_phys->dn_blkptr;
b128c09f 482 ASSERT3U(blkid + i, <, dn->dn_nblkptr);
34dc7c2f 483 bp += blkid + i;
428870ff 484 if (dsl_dataset_block_freeable(ds, bp, bp->blk_birth)) {
34dc7c2f 485 dprintf_bp(bp, "can free old%s", "");
428870ff 486 space += bp_get_dsize(spa, bp);
34dc7c2f
BB
487 }
488 unref += BP_GET_ASIZE(bp);
489 }
ff80d9b1 490 nl1blks = 1;
34dc7c2f
BB
491 nblks = 0;
492 }
493
b128c09f 494 lastblk = blkid + nblks - 1;
34dc7c2f
BB
495 while (nblks) {
496 dmu_buf_impl_t *dbuf;
b128c09f
BB
497 uint64_t ibyte, new_blkid;
498 int epb = 1 << epbs;
499 int err, i, blkoff, tochk;
500 blkptr_t *bp;
501
502 ibyte = blkid << dn->dn_datablkshift;
503 err = dnode_next_offset(dn,
504 DNODE_FIND_HAVELOCK, &ibyte, 2, 1, 0);
505 new_blkid = ibyte >> dn->dn_datablkshift;
506 if (err == ESRCH) {
507 skipped += (lastblk >> epbs) - (blkid >> epbs) + 1;
508 break;
509 }
510 if (err) {
511 txh->txh_tx->tx_err = err;
512 break;
513 }
514 if (new_blkid > lastblk) {
515 skipped += (lastblk >> epbs) - (blkid >> epbs) + 1;
516 break;
517 }
34dc7c2f 518
b128c09f
BB
519 if (new_blkid > blkid) {
520 ASSERT((new_blkid >> epbs) > (blkid >> epbs));
521 skipped += (new_blkid >> epbs) - (blkid >> epbs) - 1;
522 nblks -= new_blkid - blkid;
523 blkid = new_blkid;
524 }
525 blkoff = P2PHASE(blkid, epb);
526 tochk = MIN(epb - blkoff, nblks);
34dc7c2f 527
428870ff
BB
528 err = dbuf_hold_impl(dn, 1, blkid >> epbs, FALSE, FTAG, &dbuf);
529 if (err) {
530 txh->txh_tx->tx_err = err;
b128c09f 531 break;
34dc7c2f 532 }
428870ff
BB
533
534 txh->txh_memory_tohold += dbuf->db.db_size;
535
536 /*
537 * We don't check memory_tohold against DMU_MAX_ACCESS because
538 * memory_tohold is an over-estimation (especially the >L1
539 * indirect blocks), so it could fail. Callers should have
540 * already verified that they will not be holding too much
541 * memory.
542 */
543
b128c09f
BB
544 err = dbuf_read(dbuf, NULL, DB_RF_HAVESTRUCT | DB_RF_CANFAIL);
545 if (err != 0) {
34dc7c2f 546 txh->txh_tx->tx_err = err;
b128c09f 547 dbuf_rele(dbuf, FTAG);
34dc7c2f
BB
548 break;
549 }
550
b128c09f
BB
551 bp = dbuf->db.db_data;
552 bp += blkoff;
553
554 for (i = 0; i < tochk; i++) {
428870ff
BB
555 if (dsl_dataset_block_freeable(ds, &bp[i],
556 bp[i].blk_birth)) {
b128c09f 557 dprintf_bp(&bp[i], "can free old%s", "");
428870ff 558 space += bp_get_dsize(spa, &bp[i]);
b128c09f
BB
559 }
560 unref += BP_GET_ASIZE(bp);
561 }
562 dbuf_rele(dbuf, FTAG);
563
ff80d9b1 564 ++nl1blks;
34dc7c2f
BB
565 blkid += tochk;
566 nblks -= tochk;
567 }
568 rw_exit(&dn->dn_struct_rwlock);
569
ff80d9b1
AJ
570 /*
571 * Add in memory requirements of higher-level indirects.
572 * This assumes a worst-possible scenario for dn_nlevels and a
573 * worst-possible distribution of l1-blocks over the region to free.
574 */
575 {
576 uint64_t blkcnt = 1 + ((l0span >> epbs) >> epbs);
577 int level = 2;
578 /*
579 * Here we don't use DN_MAX_LEVEL, but calculate it with the
580 * given datablkshift and indblkshift. This makes the
581 * difference between 19 and 8 on large files.
582 */
583 int maxlevel = 2 + (DN_MAX_OFFSET_SHIFT - dn->dn_datablkshift) /
584 (dn->dn_indblkshift - SPA_BLKPTRSHIFT);
585
586 while (level++ < maxlevel) {
b077fd4c 587 txh->txh_memory_tohold += MAX(MIN(blkcnt, nl1blks), 1)
ff80d9b1
AJ
588 << dn->dn_indblkshift;
589 blkcnt = 1 + (blkcnt >> epbs);
590 }
591 }
592
b128c09f
BB
593 /* account for new level 1 indirect blocks that might show up */
594 if (skipped > 0) {
595 txh->txh_fudge += skipped << dn->dn_indblkshift;
596 skipped = MIN(skipped, DMU_MAX_DELETEBLKCNT >> epbs);
597 txh->txh_memory_tohold += skipped << dn->dn_indblkshift;
598 }
34dc7c2f
BB
599 txh->txh_space_tofree += space;
600 txh->txh_space_tounref += unref;
601}
602
603void
604dmu_tx_hold_free(dmu_tx_t *tx, uint64_t object, uint64_t off, uint64_t len)
605{
606 dmu_tx_hold_t *txh;
607 dnode_t *dn;
ea97f8ce 608 int err;
34dc7c2f
BB
609 zio_t *zio;
610
611 ASSERT(tx->tx_txg == 0);
612
613 txh = dmu_tx_hold_object_impl(tx, tx->tx_objset,
614 object, THT_FREE, off, len);
615 if (txh == NULL)
616 return;
617 dn = txh->txh_dnode;
e8b96c60 618 dmu_tx_count_dnode(txh);
34dc7c2f 619
34dc7c2f
BB
620 if (off >= (dn->dn_maxblkid+1) * dn->dn_datablksz)
621 return;
622 if (len == DMU_OBJECT_END)
623 len = (dn->dn_maxblkid+1) * dn->dn_datablksz - off;
624
ea97f8ce
MA
625 dmu_tx_count_dnode(txh);
626
34dc7c2f 627 /*
ea97f8ce
MA
628 * For i/o error checking, we read the first and last level-0
629 * blocks if they are not aligned, and all the level-1 blocks.
630 *
631 * Note: dbuf_free_range() assumes that we have not instantiated
632 * any level-0 dbufs that will be completely freed. Therefore we must
633 * exercise care to not read or count the first and last blocks
634 * if they are blocksize-aligned.
635 */
636 if (dn->dn_datablkshift == 0) {
b663a23d 637 if (off != 0 || len < dn->dn_datablksz)
92bc214c 638 dmu_tx_count_write(txh, 0, dn->dn_datablksz);
ea97f8ce
MA
639 } else {
640 /* first block will be modified if it is not aligned */
641 if (!IS_P2ALIGNED(off, 1 << dn->dn_datablkshift))
642 dmu_tx_count_write(txh, off, 1);
643 /* last block will be modified if it is not aligned */
644 if (!IS_P2ALIGNED(off + len, 1 << dn->dn_datablkshift))
645 dmu_tx_count_write(txh, off+len, 1);
646 }
647
648 /*
649 * Check level-1 blocks.
34dc7c2f
BB
650 */
651 if (dn->dn_nlevels > 1) {
ea97f8ce 652 int shift = dn->dn_datablkshift + dn->dn_indblkshift -
34dc7c2f 653 SPA_BLKPTRSHIFT;
ea97f8ce
MA
654 uint64_t start = off >> shift;
655 uint64_t end = (off + len) >> shift;
656 uint64_t i;
657
ea97f8ce 658 ASSERT(dn->dn_indblkshift != 0);
34dc7c2f 659
2e7b7657
MA
660 /*
661 * dnode_reallocate() can result in an object with indirect
662 * blocks having an odd data block size. In this case,
663 * just check the single block.
664 */
665 if (dn->dn_datablkshift == 0)
666 start = end = 0;
667
34dc7c2f
BB
668 zio = zio_root(tx->tx_pool->dp_spa,
669 NULL, NULL, ZIO_FLAG_CANFAIL);
670 for (i = start; i <= end; i++) {
671 uint64_t ibyte = i << shift;
b128c09f 672 err = dnode_next_offset(dn, 0, &ibyte, 2, 1, 0);
34dc7c2f
BB
673 i = ibyte >> shift;
674 if (err == ESRCH)
675 break;
676 if (err) {
677 tx->tx_err = err;
678 return;
679 }
680
681 err = dmu_tx_check_ioerr(zio, dn, 1, i);
682 if (err) {
683 tx->tx_err = err;
684 return;
685 }
686 }
687 err = zio_wait(zio);
688 if (err) {
689 tx->tx_err = err;
690 return;
691 }
692 }
693
34dc7c2f
BB
694 dmu_tx_count_free(txh, off, len);
695}
696
697void
9babb374 698dmu_tx_hold_zap(dmu_tx_t *tx, uint64_t object, int add, const char *name)
34dc7c2f
BB
699{
700 dmu_tx_hold_t *txh;
701 dnode_t *dn;
d683ddbb 702 dsl_dataset_phys_t *ds_phys;
34dc7c2f
BB
703 uint64_t nblocks;
704 int epbs, err;
705
706 ASSERT(tx->tx_txg == 0);
707
708 txh = dmu_tx_hold_object_impl(tx, tx->tx_objset,
709 object, THT_ZAP, add, (uintptr_t)name);
710 if (txh == NULL)
711 return;
712 dn = txh->txh_dnode;
713
714 dmu_tx_count_dnode(txh);
715
716 if (dn == NULL) {
717 /*
718 * We will be able to fit a new object's entries into one leaf
719 * block. So there will be at most 2 blocks total,
720 * including the header block.
721 */
722 dmu_tx_count_write(txh, 0, 2 << fzap_default_block_shift);
723 return;
724 }
725
9ae529ec 726 ASSERT3U(DMU_OT_BYTESWAP(dn->dn_type), ==, DMU_BSWAP_ZAP);
34dc7c2f
BB
727
728 if (dn->dn_maxblkid == 0 && !add) {
22cd4a46
AL
729 blkptr_t *bp;
730
34dc7c2f
BB
731 /*
732 * If there is only one block (i.e. this is a micro-zap)
733 * and we are not adding anything, the accounting is simple.
734 */
735 err = dmu_tx_check_ioerr(NULL, dn, 0, 0);
736 if (err) {
737 tx->tx_err = err;
738 return;
739 }
740
741 /*
742 * Use max block size here, since we don't know how much
743 * the size will change between now and the dbuf dirty call.
744 */
22cd4a46 745 bp = &dn->dn_phys->dn_blkptr[0];
34dc7c2f 746 if (dsl_dataset_block_freeable(dn->dn_objset->os_dsl_dataset,
22cd4a46 747 bp, bp->blk_birth))
34dc7c2f 748 txh->txh_space_tooverwrite += SPA_MAXBLOCKSIZE;
22cd4a46 749 else
34dc7c2f 750 txh->txh_space_towrite += SPA_MAXBLOCKSIZE;
22cd4a46 751 if (!BP_IS_HOLE(bp))
9babb374 752 txh->txh_space_tounref += SPA_MAXBLOCKSIZE;
34dc7c2f
BB
753 return;
754 }
755
756 if (dn->dn_maxblkid > 0 && name) {
757 /*
758 * access the name in this fat-zap so that we'll check
759 * for i/o errors to the leaf blocks, etc.
760 */
428870ff 761 err = zap_lookup(dn->dn_objset, dn->dn_object, name,
34dc7c2f
BB
762 8, 0, NULL);
763 if (err == EIO) {
764 tx->tx_err = err;
765 return;
766 }
767 }
768
428870ff 769 err = zap_count_write(dn->dn_objset, dn->dn_object, name, add,
45d1cae3 770 &txh->txh_space_towrite, &txh->txh_space_tooverwrite);
34dc7c2f
BB
771
772 /*
773 * If the modified blocks are scattered to the four winds,
774 * we'll have to modify an indirect twig for each.
775 */
776 epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
d683ddbb 777 ds_phys = dsl_dataset_phys(dn->dn_objset->os_dsl_dataset);
34dc7c2f 778 for (nblocks = dn->dn_maxblkid >> epbs; nblocks != 0; nblocks >>= epbs)
d683ddbb 779 if (ds_phys->ds_prev_snap_obj)
9babb374
BB
780 txh->txh_space_towrite += 3 << dn->dn_indblkshift;
781 else
782 txh->txh_space_tooverwrite += 3 << dn->dn_indblkshift;
34dc7c2f
BB
783}
784
785void
786dmu_tx_hold_bonus(dmu_tx_t *tx, uint64_t object)
787{
788 dmu_tx_hold_t *txh;
789
790 ASSERT(tx->tx_txg == 0);
791
792 txh = dmu_tx_hold_object_impl(tx, tx->tx_objset,
793 object, THT_BONUS, 0, 0);
794 if (txh)
795 dmu_tx_count_dnode(txh);
796}
797
798void
799dmu_tx_hold_space(dmu_tx_t *tx, uint64_t space)
800{
801 dmu_tx_hold_t *txh;
7d637211 802
34dc7c2f
BB
803 ASSERT(tx->tx_txg == 0);
804
805 txh = dmu_tx_hold_object_impl(tx, tx->tx_objset,
806 DMU_NEW_OBJECT, THT_SPACE, space, 0);
7d637211
NC
807 if (txh)
808 txh->txh_space_towrite += space;
34dc7c2f
BB
809}
810
811int
812dmu_tx_holds(dmu_tx_t *tx, uint64_t object)
813{
814 dmu_tx_hold_t *txh;
815 int holds = 0;
816
817 /*
818 * By asserting that the tx is assigned, we're counting the
819 * number of dn_tx_holds, which is the same as the number of
820 * dn_holds. Otherwise, we'd be counting dn_holds, but
821 * dn_tx_holds could be 0.
822 */
823 ASSERT(tx->tx_txg != 0);
824
825 /* if (tx->tx_anyobj == TRUE) */
826 /* return (0); */
827
828 for (txh = list_head(&tx->tx_holds); txh;
829 txh = list_next(&tx->tx_holds, txh)) {
830 if (txh->txh_dnode && txh->txh_dnode->dn_object == object)
831 holds++;
832 }
833
834 return (holds);
835}
836
1c5de20a 837#ifdef DEBUG_DMU_TX
34dc7c2f
BB
838void
839dmu_tx_dirty_buf(dmu_tx_t *tx, dmu_buf_impl_t *db)
840{
841 dmu_tx_hold_t *txh;
842 int match_object = FALSE, match_offset = FALSE;
572e2857 843 dnode_t *dn;
34dc7c2f 844
572e2857
BB
845 DB_DNODE_ENTER(db);
846 dn = DB_DNODE(db);
99ea23c5 847 ASSERT(dn != NULL);
34dc7c2f 848 ASSERT(tx->tx_txg != 0);
428870ff 849 ASSERT(tx->tx_objset == NULL || dn->dn_objset == tx->tx_objset);
34dc7c2f
BB
850 ASSERT3U(dn->dn_object, ==, db->db.db_object);
851
572e2857
BB
852 if (tx->tx_anyobj) {
853 DB_DNODE_EXIT(db);
34dc7c2f 854 return;
572e2857 855 }
34dc7c2f
BB
856
857 /* XXX No checking on the meta dnode for now */
572e2857
BB
858 if (db->db.db_object == DMU_META_DNODE_OBJECT) {
859 DB_DNODE_EXIT(db);
34dc7c2f 860 return;
572e2857 861 }
34dc7c2f
BB
862
863 for (txh = list_head(&tx->tx_holds); txh;
864 txh = list_next(&tx->tx_holds, txh)) {
99ea23c5 865 ASSERT3U(dn->dn_assigned_txg, ==, tx->tx_txg);
34dc7c2f
BB
866 if (txh->txh_dnode == dn && txh->txh_type != THT_NEWOBJECT)
867 match_object = TRUE;
868 if (txh->txh_dnode == NULL || txh->txh_dnode == dn) {
869 int datablkshift = dn->dn_datablkshift ?
870 dn->dn_datablkshift : SPA_MAXBLOCKSHIFT;
871 int epbs = dn->dn_indblkshift - SPA_BLKPTRSHIFT;
872 int shift = datablkshift + epbs * db->db_level;
873 uint64_t beginblk = shift >= 64 ? 0 :
874 (txh->txh_arg1 >> shift);
875 uint64_t endblk = shift >= 64 ? 0 :
876 ((txh->txh_arg1 + txh->txh_arg2 - 1) >> shift);
877 uint64_t blkid = db->db_blkid;
878
879 /* XXX txh_arg2 better not be zero... */
880
881 dprintf("found txh type %x beginblk=%llx endblk=%llx\n",
882 txh->txh_type, beginblk, endblk);
883
884 switch (txh->txh_type) {
885 case THT_WRITE:
886 if (blkid >= beginblk && blkid <= endblk)
887 match_offset = TRUE;
888 /*
889 * We will let this hold work for the bonus
428870ff
BB
890 * or spill buffer so that we don't need to
891 * hold it when creating a new object.
34dc7c2f 892 */
428870ff
BB
893 if (blkid == DMU_BONUS_BLKID ||
894 blkid == DMU_SPILL_BLKID)
34dc7c2f
BB
895 match_offset = TRUE;
896 /*
897 * They might have to increase nlevels,
898 * thus dirtying the new TLIBs. Or the
899 * might have to change the block size,
900 * thus dirying the new lvl=0 blk=0.
901 */
902 if (blkid == 0)
903 match_offset = TRUE;
904 break;
905 case THT_FREE:
b128c09f
BB
906 /*
907 * We will dirty all the level 1 blocks in
908 * the free range and perhaps the first and
909 * last level 0 block.
910 */
911 if (blkid >= beginblk && (blkid <= endblk ||
912 txh->txh_arg2 == DMU_OBJECT_END))
34dc7c2f
BB
913 match_offset = TRUE;
914 break;
428870ff
BB
915 case THT_SPILL:
916 if (blkid == DMU_SPILL_BLKID)
917 match_offset = TRUE;
918 break;
34dc7c2f 919 case THT_BONUS:
428870ff 920 if (blkid == DMU_BONUS_BLKID)
34dc7c2f
BB
921 match_offset = TRUE;
922 break;
923 case THT_ZAP:
924 match_offset = TRUE;
925 break;
926 case THT_NEWOBJECT:
927 match_object = TRUE;
928 break;
929 default:
989fd514
BB
930 cmn_err(CE_PANIC, "bad txh_type %d",
931 txh->txh_type);
34dc7c2f
BB
932 }
933 }
572e2857
BB
934 if (match_object && match_offset) {
935 DB_DNODE_EXIT(db);
34dc7c2f 936 return;
572e2857 937 }
34dc7c2f 938 }
572e2857 939 DB_DNODE_EXIT(db);
34dc7c2f
BB
940 panic("dirtying dbuf obj=%llx lvl=%u blkid=%llx but not tx_held\n",
941 (u_longlong_t)db->db.db_object, db->db_level,
942 (u_longlong_t)db->db_blkid);
943}
944#endif
945
e8b96c60
MA
946/*
947 * If we can't do 10 iops, something is wrong. Let us go ahead
948 * and hit zfs_dirty_data_max.
949 */
950hrtime_t zfs_delay_max_ns = 100 * MICROSEC; /* 100 milliseconds */
951int zfs_delay_resolution_ns = 100 * 1000; /* 100 microseconds */
952
953/*
954 * We delay transactions when we've determined that the backend storage
955 * isn't able to accommodate the rate of incoming writes.
956 *
957 * If there is already a transaction waiting, we delay relative to when
958 * that transaction finishes waiting. This way the calculated min_time
959 * is independent of the number of threads concurrently executing
960 * transactions.
961 *
962 * If we are the only waiter, wait relative to when the transaction
963 * started, rather than the current time. This credits the transaction for
964 * "time already served", e.g. reading indirect blocks.
965 *
966 * The minimum time for a transaction to take is calculated as:
967 * min_time = scale * (dirty - min) / (max - dirty)
968 * min_time is then capped at zfs_delay_max_ns.
969 *
970 * The delay has two degrees of freedom that can be adjusted via tunables.
971 * The percentage of dirty data at which we start to delay is defined by
972 * zfs_delay_min_dirty_percent. This should typically be at or above
973 * zfs_vdev_async_write_active_max_dirty_percent so that we only start to
974 * delay after writing at full speed has failed to keep up with the incoming
975 * write rate. The scale of the curve is defined by zfs_delay_scale. Roughly
976 * speaking, this variable determines the amount of delay at the midpoint of
977 * the curve.
978 *
979 * delay
980 * 10ms +-------------------------------------------------------------*+
981 * | *|
982 * 9ms + *+
983 * | *|
984 * 8ms + *+
985 * | * |
986 * 7ms + * +
987 * | * |
988 * 6ms + * +
989 * | * |
990 * 5ms + * +
991 * | * |
992 * 4ms + * +
993 * | * |
994 * 3ms + * +
995 * | * |
996 * 2ms + (midpoint) * +
997 * | | ** |
998 * 1ms + v *** +
999 * | zfs_delay_scale ----------> ******** |
1000 * 0 +-------------------------------------*********----------------+
1001 * 0% <- zfs_dirty_data_max -> 100%
1002 *
1003 * Note that since the delay is added to the outstanding time remaining on the
1004 * most recent transaction, the delay is effectively the inverse of IOPS.
1005 * Here the midpoint of 500us translates to 2000 IOPS. The shape of the curve
1006 * was chosen such that small changes in the amount of accumulated dirty data
1007 * in the first 3/4 of the curve yield relatively small differences in the
1008 * amount of delay.
1009 *
1010 * The effects can be easier to understand when the amount of delay is
1011 * represented on a log scale:
1012 *
1013 * delay
1014 * 100ms +-------------------------------------------------------------++
1015 * + +
1016 * | |
1017 * + *+
1018 * 10ms + *+
1019 * + ** +
1020 * | (midpoint) ** |
1021 * + | ** +
1022 * 1ms + v **** +
1023 * + zfs_delay_scale ----------> ***** +
1024 * | **** |
1025 * + **** +
1026 * 100us + ** +
1027 * + * +
1028 * | * |
1029 * + * +
1030 * 10us + * +
1031 * + +
1032 * | |
1033 * + +
1034 * +--------------------------------------------------------------+
1035 * 0% <- zfs_dirty_data_max -> 100%
1036 *
1037 * Note here that only as the amount of dirty data approaches its limit does
1038 * the delay start to increase rapidly. The goal of a properly tuned system
1039 * should be to keep the amount of dirty data out of that range by first
1040 * ensuring that the appropriate limits are set for the I/O scheduler to reach
1041 * optimal throughput on the backend storage, and then by changing the value
1042 * of zfs_delay_scale to increase the steepness of the curve.
1043 */
1044static void
1045dmu_tx_delay(dmu_tx_t *tx, uint64_t dirty)
1046{
1047 dsl_pool_t *dp = tx->tx_pool;
1048 uint64_t delay_min_bytes =
1049 zfs_dirty_data_max * zfs_delay_min_dirty_percent / 100;
1050 hrtime_t wakeup, min_tx_time, now;
1051
1052 if (dirty <= delay_min_bytes)
1053 return;
1054
1055 /*
1056 * The caller has already waited until we are under the max.
1057 * We make them pass us the amount of dirty data so we don't
1058 * have to handle the case of it being >= the max, which could
1059 * cause a divide-by-zero if it's == the max.
1060 */
1061 ASSERT3U(dirty, <, zfs_dirty_data_max);
1062
1063 now = gethrtime();
1064 min_tx_time = zfs_delay_scale *
1065 (dirty - delay_min_bytes) / (zfs_dirty_data_max - dirty);
1066 min_tx_time = MIN(min_tx_time, zfs_delay_max_ns);
1067 if (now > tx->tx_start + min_tx_time)
1068 return;
1069
1070 DTRACE_PROBE3(delay__mintime, dmu_tx_t *, tx, uint64_t, dirty,
1071 uint64_t, min_tx_time);
1072
1073 mutex_enter(&dp->dp_lock);
1074 wakeup = MAX(tx->tx_start + min_tx_time,
1075 dp->dp_last_wakeup + min_tx_time);
1076 dp->dp_last_wakeup = wakeup;
1077 mutex_exit(&dp->dp_lock);
1078
1079 zfs_sleep_until(wakeup);
1080}
1081
34dc7c2f 1082static int
13fe0198 1083dmu_tx_try_assign(dmu_tx_t *tx, txg_how_t txg_how)
34dc7c2f
BB
1084{
1085 dmu_tx_hold_t *txh;
1086 spa_t *spa = tx->tx_pool->dp_spa;
b128c09f
BB
1087 uint64_t memory, asize, fsize, usize;
1088 uint64_t towrite, tofree, tooverwrite, tounref, tohold, fudge;
34dc7c2f 1089
c99c9001 1090 ASSERT0(tx->tx_txg);
34dc7c2f 1091
570827e1
BB
1092 if (tx->tx_err) {
1093 DMU_TX_STAT_BUMP(dmu_tx_error);
34dc7c2f 1094 return (tx->tx_err);
570827e1 1095 }
34dc7c2f 1096
b128c09f 1097 if (spa_suspended(spa)) {
570827e1
BB
1098 DMU_TX_STAT_BUMP(dmu_tx_suspended);
1099
34dc7c2f
BB
1100 /*
1101 * If the user has indicated a blocking failure mode
1102 * then return ERESTART which will block in dmu_tx_wait().
1103 * Otherwise, return EIO so that an error can get
1104 * propagated back to the VOP calls.
1105 *
1106 * Note that we always honor the txg_how flag regardless
1107 * of the failuremode setting.
1108 */
1109 if (spa_get_failmode(spa) == ZIO_FAILURE_MODE_CONTINUE &&
1110 txg_how != TXG_WAIT)
2e528b49 1111 return (SET_ERROR(EIO));
34dc7c2f 1112
2e528b49 1113 return (SET_ERROR(ERESTART));
34dc7c2f
BB
1114 }
1115
e8b96c60
MA
1116 if (!tx->tx_waited &&
1117 dsl_pool_need_dirty_delay(tx->tx_pool)) {
1118 tx->tx_wait_dirty = B_TRUE;
1119 DMU_TX_STAT_BUMP(dmu_tx_dirty_delay);
1120 return (ERESTART);
1121 }
1122
34dc7c2f
BB
1123 tx->tx_txg = txg_hold_open(tx->tx_pool, &tx->tx_txgh);
1124 tx->tx_needassign_txh = NULL;
1125
1126 /*
1127 * NB: No error returns are allowed after txg_hold_open, but
1128 * before processing the dnode holds, due to the
1129 * dmu_tx_unassign() logic.
1130 */
1131
b128c09f 1132 towrite = tofree = tooverwrite = tounref = tohold = fudge = 0;
34dc7c2f
BB
1133 for (txh = list_head(&tx->tx_holds); txh;
1134 txh = list_next(&tx->tx_holds, txh)) {
1135 dnode_t *dn = txh->txh_dnode;
1136 if (dn != NULL) {
1137 mutex_enter(&dn->dn_mtx);
1138 if (dn->dn_assigned_txg == tx->tx_txg - 1) {
1139 mutex_exit(&dn->dn_mtx);
1140 tx->tx_needassign_txh = txh;
570827e1 1141 DMU_TX_STAT_BUMP(dmu_tx_group);
2e528b49 1142 return (SET_ERROR(ERESTART));
34dc7c2f
BB
1143 }
1144 if (dn->dn_assigned_txg == 0)
1145 dn->dn_assigned_txg = tx->tx_txg;
1146 ASSERT3U(dn->dn_assigned_txg, ==, tx->tx_txg);
1147 (void) refcount_add(&dn->dn_tx_holds, tx);
1148 mutex_exit(&dn->dn_mtx);
1149 }
1150 towrite += txh->txh_space_towrite;
1151 tofree += txh->txh_space_tofree;
1152 tooverwrite += txh->txh_space_tooverwrite;
1153 tounref += txh->txh_space_tounref;
b128c09f
BB
1154 tohold += txh->txh_memory_tohold;
1155 fudge += txh->txh_fudge;
34dc7c2f
BB
1156 }
1157
34dc7c2f
BB
1158 /*
1159 * If a snapshot has been taken since we made our estimates,
1160 * assume that we won't be able to free or overwrite anything.
1161 */
1162 if (tx->tx_objset &&
428870ff 1163 dsl_dataset_prev_snap_txg(tx->tx_objset->os_dsl_dataset) >
34dc7c2f
BB
1164 tx->tx_lastsnap_txg) {
1165 towrite += tooverwrite;
1166 tooverwrite = tofree = 0;
1167 }
1168
b128c09f
BB
1169 /* needed allocation: worst-case estimate of write space */
1170 asize = spa_get_asize(tx->tx_pool->dp_spa, towrite + tooverwrite);
1171 /* freed space estimate: worst-case overwrite + free estimate */
34dc7c2f 1172 fsize = spa_get_asize(tx->tx_pool->dp_spa, tooverwrite) + tofree;
b128c09f 1173 /* convert unrefd space to worst-case estimate */
34dc7c2f 1174 usize = spa_get_asize(tx->tx_pool->dp_spa, tounref);
b128c09f
BB
1175 /* calculate memory footprint estimate */
1176 memory = towrite + tooverwrite + tohold;
34dc7c2f 1177
1c5de20a 1178#ifdef DEBUG_DMU_TX
b128c09f
BB
1179 /*
1180 * Add in 'tohold' to account for our dirty holds on this memory
1181 * XXX - the "fudge" factor is to account for skipped blocks that
1182 * we missed because dnode_next_offset() misses in-core-only blocks.
1183 */
1184 tx->tx_space_towrite = asize +
1185 spa_get_asize(tx->tx_pool->dp_spa, tohold + fudge);
34dc7c2f
BB
1186 tx->tx_space_tofree = tofree;
1187 tx->tx_space_tooverwrite = tooverwrite;
1188 tx->tx_space_tounref = tounref;
1189#endif
1190
1191 if (tx->tx_dir && asize != 0) {
b128c09f
BB
1192 int err = dsl_dir_tempreserve_space(tx->tx_dir, memory,
1193 asize, fsize, usize, &tx->tx_tempreserve_cookie, tx);
34dc7c2f
BB
1194 if (err)
1195 return (err);
1196 }
1197
570827e1
BB
1198 DMU_TX_STAT_BUMP(dmu_tx_assigned);
1199
34dc7c2f
BB
1200 return (0);
1201}
1202
1203static void
1204dmu_tx_unassign(dmu_tx_t *tx)
1205{
1206 dmu_tx_hold_t *txh;
1207
1208 if (tx->tx_txg == 0)
1209 return;
1210
1211 txg_rele_to_quiesce(&tx->tx_txgh);
1212
e49f1e20
WA
1213 /*
1214 * Walk the transaction's hold list, removing the hold on the
1215 * associated dnode, and notifying waiters if the refcount drops to 0.
1216 */
34dc7c2f
BB
1217 for (txh = list_head(&tx->tx_holds); txh != tx->tx_needassign_txh;
1218 txh = list_next(&tx->tx_holds, txh)) {
1219 dnode_t *dn = txh->txh_dnode;
1220
1221 if (dn == NULL)
1222 continue;
1223 mutex_enter(&dn->dn_mtx);
1224 ASSERT3U(dn->dn_assigned_txg, ==, tx->tx_txg);
1225
1226 if (refcount_remove(&dn->dn_tx_holds, tx) == 0) {
1227 dn->dn_assigned_txg = 0;
1228 cv_broadcast(&dn->dn_notxholds);
1229 }
1230 mutex_exit(&dn->dn_mtx);
1231 }
1232
1233 txg_rele_to_sync(&tx->tx_txgh);
1234
1235 tx->tx_lasttried_txg = tx->tx_txg;
1236 tx->tx_txg = 0;
1237}
1238
1239/*
1240 * Assign tx to a transaction group. txg_how can be one of:
1241 *
1242 * (1) TXG_WAIT. If the current open txg is full, waits until there's
1243 * a new one. This should be used when you're not holding locks.
13fe0198 1244 * It will only fail if we're truly out of space (or over quota).
34dc7c2f
BB
1245 *
1246 * (2) TXG_NOWAIT. If we can't assign into the current open txg without
1247 * blocking, returns immediately with ERESTART. This should be used
1248 * whenever you're holding locks. On an ERESTART error, the caller
1249 * should drop locks, do a dmu_tx_wait(tx), and try again.
e8b96c60
MA
1250 *
1251 * (3) TXG_WAITED. Like TXG_NOWAIT, but indicates that dmu_tx_wait()
1252 * has already been called on behalf of this operation (though
1253 * most likely on a different tx).
34dc7c2f
BB
1254 */
1255int
13fe0198 1256dmu_tx_assign(dmu_tx_t *tx, txg_how_t txg_how)
34dc7c2f
BB
1257{
1258 int err;
1259
1260 ASSERT(tx->tx_txg == 0);
e8b96c60
MA
1261 ASSERT(txg_how == TXG_WAIT || txg_how == TXG_NOWAIT ||
1262 txg_how == TXG_WAITED);
34dc7c2f
BB
1263 ASSERT(!dsl_pool_sync_context(tx->tx_pool));
1264
e8b96c60
MA
1265 if (txg_how == TXG_WAITED)
1266 tx->tx_waited = B_TRUE;
1267
13fe0198
MA
1268 /* If we might wait, we must not hold the config lock. */
1269 ASSERT(txg_how != TXG_WAIT || !dsl_pool_config_held(tx->tx_pool));
1270
34dc7c2f
BB
1271 while ((err = dmu_tx_try_assign(tx, txg_how)) != 0) {
1272 dmu_tx_unassign(tx);
1273
1274 if (err != ERESTART || txg_how != TXG_WAIT)
1275 return (err);
1276
1277 dmu_tx_wait(tx);
1278 }
1279
1280 txg_rele_to_quiesce(&tx->tx_txgh);
1281
1282 return (0);
1283}
1284
1285void
1286dmu_tx_wait(dmu_tx_t *tx)
1287{
1288 spa_t *spa = tx->tx_pool->dp_spa;
e8b96c60 1289 dsl_pool_t *dp = tx->tx_pool;
a77c4c83 1290 hrtime_t before;
34dc7c2f
BB
1291
1292 ASSERT(tx->tx_txg == 0);
13fe0198 1293 ASSERT(!dsl_pool_config_held(tx->tx_pool));
34dc7c2f 1294
a77c4c83
NB
1295 before = gethrtime();
1296
e8b96c60
MA
1297 if (tx->tx_wait_dirty) {
1298 uint64_t dirty;
1299
1300 /*
1301 * dmu_tx_try_assign() has determined that we need to wait
1302 * because we've consumed much or all of the dirty buffer
1303 * space.
1304 */
1305 mutex_enter(&dp->dp_lock);
1306 if (dp->dp_dirty_total >= zfs_dirty_data_max)
1307 DMU_TX_STAT_BUMP(dmu_tx_dirty_over_max);
1308 while (dp->dp_dirty_total >= zfs_dirty_data_max)
1309 cv_wait(&dp->dp_spaceavail_cv, &dp->dp_lock);
1310 dirty = dp->dp_dirty_total;
1311 mutex_exit(&dp->dp_lock);
1312
1313 dmu_tx_delay(tx, dirty);
1314
1315 tx->tx_wait_dirty = B_FALSE;
1316
1317 /*
1318 * Note: setting tx_waited only has effect if the caller
1319 * used TX_WAIT. Otherwise they are going to destroy
1320 * this tx and try again. The common case, zfs_write(),
1321 * uses TX_WAIT.
1322 */
1323 tx->tx_waited = B_TRUE;
1324 } else if (spa_suspended(spa) || tx->tx_lasttried_txg == 0) {
1325 /*
1326 * If the pool is suspended we need to wait until it
1327 * is resumed. Note that it's possible that the pool
1328 * has become active after this thread has tried to
1329 * obtain a tx. If that's the case then tx_lasttried_txg
1330 * would not have been set.
1331 */
1332 txg_wait_synced(dp, spa_last_synced_txg(spa) + 1);
34dc7c2f
BB
1333 } else if (tx->tx_needassign_txh) {
1334 dnode_t *dn = tx->tx_needassign_txh->txh_dnode;
1335
1336 mutex_enter(&dn->dn_mtx);
1337 while (dn->dn_assigned_txg == tx->tx_lasttried_txg - 1)
1338 cv_wait(&dn->dn_notxholds, &dn->dn_mtx);
1339 mutex_exit(&dn->dn_mtx);
1340 tx->tx_needassign_txh = NULL;
1341 } else {
e8b96c60
MA
1342 /*
1343 * A dnode is assigned to the quiescing txg. Wait for its
1344 * transaction to complete.
1345 */
34dc7c2f
BB
1346 txg_wait_open(tx->tx_pool, tx->tx_lasttried_txg + 1);
1347 }
a77c4c83
NB
1348
1349 spa_tx_assign_add_nsecs(spa, gethrtime() - before);
34dc7c2f
BB
1350}
1351
1352void
1353dmu_tx_willuse_space(dmu_tx_t *tx, int64_t delta)
1354{
1c5de20a 1355#ifdef DEBUG_DMU_TX
34dc7c2f
BB
1356 if (tx->tx_dir == NULL || delta == 0)
1357 return;
1358
1359 if (delta > 0) {
1360 ASSERT3U(refcount_count(&tx->tx_space_written) + delta, <=,
1361 tx->tx_space_towrite);
1362 (void) refcount_add_many(&tx->tx_space_written, delta, NULL);
1363 } else {
1364 (void) refcount_add_many(&tx->tx_space_freed, -delta, NULL);
1365 }
1366#endif
1367}
1368
1369void
1370dmu_tx_commit(dmu_tx_t *tx)
1371{
1372 dmu_tx_hold_t *txh;
1373
1374 ASSERT(tx->tx_txg != 0);
1375
e49f1e20
WA
1376 /*
1377 * Go through the transaction's hold list and remove holds on
1378 * associated dnodes, notifying waiters if no holds remain.
1379 */
c65aa5b2 1380 while ((txh = list_head(&tx->tx_holds))) {
34dc7c2f
BB
1381 dnode_t *dn = txh->txh_dnode;
1382
1383 list_remove(&tx->tx_holds, txh);
1384 kmem_free(txh, sizeof (dmu_tx_hold_t));
1385 if (dn == NULL)
1386 continue;
1387 mutex_enter(&dn->dn_mtx);
1388 ASSERT3U(dn->dn_assigned_txg, ==, tx->tx_txg);
1389
1390 if (refcount_remove(&dn->dn_tx_holds, tx) == 0) {
1391 dn->dn_assigned_txg = 0;
1392 cv_broadcast(&dn->dn_notxholds);
1393 }
1394 mutex_exit(&dn->dn_mtx);
1395 dnode_rele(dn, tx);
1396 }
1397
1398 if (tx->tx_tempreserve_cookie)
1399 dsl_dir_tempreserve_clear(tx->tx_tempreserve_cookie, tx);
1400
428870ff
BB
1401 if (!list_is_empty(&tx->tx_callbacks))
1402 txg_register_callbacks(&tx->tx_txgh, &tx->tx_callbacks);
1403
34dc7c2f
BB
1404 if (tx->tx_anyobj == FALSE)
1405 txg_rele_to_sync(&tx->tx_txgh);
428870ff
BB
1406
1407 list_destroy(&tx->tx_callbacks);
34dc7c2f 1408 list_destroy(&tx->tx_holds);
1c5de20a 1409#ifdef DEBUG_DMU_TX
34dc7c2f
BB
1410 dprintf("towrite=%llu written=%llu tofree=%llu freed=%llu\n",
1411 tx->tx_space_towrite, refcount_count(&tx->tx_space_written),
1412 tx->tx_space_tofree, refcount_count(&tx->tx_space_freed));
1413 refcount_destroy_many(&tx->tx_space_written,
1414 refcount_count(&tx->tx_space_written));
1415 refcount_destroy_many(&tx->tx_space_freed,
1416 refcount_count(&tx->tx_space_freed));
1417#endif
1418 kmem_free(tx, sizeof (dmu_tx_t));
1419}
1420
1421void
1422dmu_tx_abort(dmu_tx_t *tx)
1423{
1424 dmu_tx_hold_t *txh;
1425
1426 ASSERT(tx->tx_txg == 0);
1427
c65aa5b2 1428 while ((txh = list_head(&tx->tx_holds))) {
34dc7c2f
BB
1429 dnode_t *dn = txh->txh_dnode;
1430
1431 list_remove(&tx->tx_holds, txh);
1432 kmem_free(txh, sizeof (dmu_tx_hold_t));
1433 if (dn != NULL)
1434 dnode_rele(dn, tx);
1435 }
428870ff
BB
1436
1437 /*
1438 * Call any registered callbacks with an error code.
1439 */
1440 if (!list_is_empty(&tx->tx_callbacks))
1441 dmu_tx_do_callbacks(&tx->tx_callbacks, ECANCELED);
1442
1443 list_destroy(&tx->tx_callbacks);
34dc7c2f 1444 list_destroy(&tx->tx_holds);
1c5de20a 1445#ifdef DEBUG_DMU_TX
34dc7c2f
BB
1446 refcount_destroy_many(&tx->tx_space_written,
1447 refcount_count(&tx->tx_space_written));
1448 refcount_destroy_many(&tx->tx_space_freed,
1449 refcount_count(&tx->tx_space_freed));
1450#endif
1451 kmem_free(tx, sizeof (dmu_tx_t));
1452}
1453
1454uint64_t
1455dmu_tx_get_txg(dmu_tx_t *tx)
1456{
1457 ASSERT(tx->tx_txg != 0);
1458 return (tx->tx_txg);
1459}
428870ff 1460
13fe0198
MA
1461dsl_pool_t *
1462dmu_tx_pool(dmu_tx_t *tx)
1463{
1464 ASSERT(tx->tx_pool != NULL);
1465 return (tx->tx_pool);
1466}
1467
428870ff
BB
1468void
1469dmu_tx_callback_register(dmu_tx_t *tx, dmu_tx_callback_func_t *func, void *data)
1470{
1471 dmu_tx_callback_t *dcb;
1472
79c76d5b 1473 dcb = kmem_alloc(sizeof (dmu_tx_callback_t), KM_SLEEP);
428870ff
BB
1474
1475 dcb->dcb_func = func;
1476 dcb->dcb_data = data;
1477
1478 list_insert_tail(&tx->tx_callbacks, dcb);
1479}
1480
1481/*
1482 * Call all the commit callbacks on a list, with a given error code.
1483 */
1484void
1485dmu_tx_do_callbacks(list_t *cb_list, int error)
1486{
1487 dmu_tx_callback_t *dcb;
1488
c65aa5b2 1489 while ((dcb = list_head(cb_list))) {
428870ff
BB
1490 list_remove(cb_list, dcb);
1491 dcb->dcb_func(dcb->dcb_data, error);
1492 kmem_free(dcb, sizeof (dmu_tx_callback_t));
1493 }
1494}
1495
1496/*
1497 * Interface to hold a bunch of attributes.
1498 * used for creating new files.
1499 * attrsize is the total size of all attributes
1500 * to be added during object creation
1501 *
1502 * For updating/adding a single attribute dmu_tx_hold_sa() should be used.
1503 */
1504
1505/*
1506 * hold necessary attribute name for attribute registration.
1507 * should be a very rare case where this is needed. If it does
1508 * happen it would only happen on the first write to the file system.
1509 */
1510static void
1511dmu_tx_sa_registration_hold(sa_os_t *sa, dmu_tx_t *tx)
1512{
1513 int i;
1514
1515 if (!sa->sa_need_attr_registration)
1516 return;
1517
1518 for (i = 0; i != sa->sa_num_attrs; i++) {
1519 if (!sa->sa_attr_table[i].sa_registered) {
1520 if (sa->sa_reg_attr_obj)
1521 dmu_tx_hold_zap(tx, sa->sa_reg_attr_obj,
1522 B_TRUE, sa->sa_attr_table[i].sa_name);
1523 else
1524 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT,
1525 B_TRUE, sa->sa_attr_table[i].sa_name);
1526 }
1527 }
1528}
1529
1530
1531void
1532dmu_tx_hold_spill(dmu_tx_t *tx, uint64_t object)
1533{
1534 dnode_t *dn;
1535 dmu_tx_hold_t *txh;
428870ff
BB
1536
1537 txh = dmu_tx_hold_object_impl(tx, tx->tx_objset, object,
1538 THT_SPILL, 0, 0);
7d637211
NC
1539 if (txh == NULL)
1540 return;
428870ff
BB
1541
1542 dn = txh->txh_dnode;
1543
1544 if (dn == NULL)
1545 return;
1546
1547 /* If blkptr doesn't exist then add space to towrite */
22cd4a46 1548 if (!(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) {
428870ff 1549 txh->txh_space_towrite += SPA_MAXBLOCKSIZE;
428870ff 1550 } else {
22cd4a46
AL
1551 blkptr_t *bp;
1552
1553 bp = &dn->dn_phys->dn_spill;
428870ff
BB
1554 if (dsl_dataset_block_freeable(dn->dn_objset->os_dsl_dataset,
1555 bp, bp->blk_birth))
1556 txh->txh_space_tooverwrite += SPA_MAXBLOCKSIZE;
1557 else
1558 txh->txh_space_towrite += SPA_MAXBLOCKSIZE;
22cd4a46 1559 if (!BP_IS_HOLE(bp))
428870ff
BB
1560 txh->txh_space_tounref += SPA_MAXBLOCKSIZE;
1561 }
1562}
1563
1564void
1565dmu_tx_hold_sa_create(dmu_tx_t *tx, int attrsize)
1566{
1567 sa_os_t *sa = tx->tx_objset->os_sa;
1568
1569 dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1570
1571 if (tx->tx_objset->os_sa->sa_master_obj == 0)
1572 return;
1573
1574 if (tx->tx_objset->os_sa->sa_layout_attr_obj)
1575 dmu_tx_hold_zap(tx, sa->sa_layout_attr_obj, B_TRUE, NULL);
1576 else {
1577 dmu_tx_hold_zap(tx, sa->sa_master_obj, B_TRUE, SA_LAYOUTS);
1578 dmu_tx_hold_zap(tx, sa->sa_master_obj, B_TRUE, SA_REGISTRY);
1579 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, B_TRUE, NULL);
1580 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, B_TRUE, NULL);
1581 }
1582
1583 dmu_tx_sa_registration_hold(sa, tx);
1584
1585 if (attrsize <= DN_MAX_BONUSLEN && !sa->sa_force_spill)
1586 return;
1587
1588 (void) dmu_tx_hold_object_impl(tx, tx->tx_objset, DMU_NEW_OBJECT,
1589 THT_SPILL, 0, 0);
1590}
1591
1592/*
1593 * Hold SA attribute
1594 *
1595 * dmu_tx_hold_sa(dmu_tx_t *tx, sa_handle_t *, attribute, add, size)
1596 *
1597 * variable_size is the total size of all variable sized attributes
1598 * passed to this function. It is not the total size of all
1599 * variable size attributes that *may* exist on this object.
1600 */
1601void
1602dmu_tx_hold_sa(dmu_tx_t *tx, sa_handle_t *hdl, boolean_t may_grow)
1603{
1604 uint64_t object;
1605 sa_os_t *sa = tx->tx_objset->os_sa;
1606
1607 ASSERT(hdl != NULL);
1608
1609 object = sa_handle_object(hdl);
1610
1611 dmu_tx_hold_bonus(tx, object);
1612
1613 if (tx->tx_objset->os_sa->sa_master_obj == 0)
1614 return;
1615
1616 if (tx->tx_objset->os_sa->sa_reg_attr_obj == 0 ||
1617 tx->tx_objset->os_sa->sa_layout_attr_obj == 0) {
1618 dmu_tx_hold_zap(tx, sa->sa_master_obj, B_TRUE, SA_LAYOUTS);
1619 dmu_tx_hold_zap(tx, sa->sa_master_obj, B_TRUE, SA_REGISTRY);
1620 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, B_TRUE, NULL);
1621 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, B_TRUE, NULL);
1622 }
1623
1624 dmu_tx_sa_registration_hold(sa, tx);
1625
1626 if (may_grow && tx->tx_objset->os_sa->sa_layout_attr_obj)
1627 dmu_tx_hold_zap(tx, sa->sa_layout_attr_obj, B_TRUE, NULL);
1628
572e2857 1629 if (sa->sa_force_spill || may_grow || hdl->sa_spill) {
428870ff
BB
1630 ASSERT(tx->tx_txg == 0);
1631 dmu_tx_hold_spill(tx, object);
572e2857
BB
1632 } else {
1633 dmu_buf_impl_t *db = (dmu_buf_impl_t *)hdl->sa_bonus;
1634 dnode_t *dn;
1635
1636 DB_DNODE_ENTER(db);
1637 dn = DB_DNODE(db);
1638 if (dn->dn_have_spill) {
1639 ASSERT(tx->tx_txg == 0);
1640 dmu_tx_hold_spill(tx, object);
1641 }
1642 DB_DNODE_EXIT(db);
428870ff
BB
1643 }
1644}
c28b2279 1645
570827e1
BB
1646void
1647dmu_tx_init(void)
1648{
1649 dmu_tx_ksp = kstat_create("zfs", 0, "dmu_tx", "misc",
1650 KSTAT_TYPE_NAMED, sizeof (dmu_tx_stats) / sizeof (kstat_named_t),
1651 KSTAT_FLAG_VIRTUAL);
1652
1653 if (dmu_tx_ksp != NULL) {
1654 dmu_tx_ksp->ks_data = &dmu_tx_stats;
1655 kstat_install(dmu_tx_ksp);
1656 }
1657}
1658
1659void
1660dmu_tx_fini(void)
1661{
1662 if (dmu_tx_ksp != NULL) {
1663 kstat_delete(dmu_tx_ksp);
1664 dmu_tx_ksp = NULL;
1665 }
1666}
1667
c28b2279
BB
1668#if defined(_KERNEL) && defined(HAVE_SPL)
1669EXPORT_SYMBOL(dmu_tx_create);
1670EXPORT_SYMBOL(dmu_tx_hold_write);
1671EXPORT_SYMBOL(dmu_tx_hold_free);
1672EXPORT_SYMBOL(dmu_tx_hold_zap);
1673EXPORT_SYMBOL(dmu_tx_hold_bonus);
1674EXPORT_SYMBOL(dmu_tx_abort);
1675EXPORT_SYMBOL(dmu_tx_assign);
1676EXPORT_SYMBOL(dmu_tx_wait);
1677EXPORT_SYMBOL(dmu_tx_commit);
1678EXPORT_SYMBOL(dmu_tx_get_txg);
1679EXPORT_SYMBOL(dmu_tx_callback_register);
1680EXPORT_SYMBOL(dmu_tx_do_callbacks);
1681EXPORT_SYMBOL(dmu_tx_hold_spill);
1682EXPORT_SYMBOL(dmu_tx_hold_sa_create);
1683EXPORT_SYMBOL(dmu_tx_hold_sa);
1684#endif