xref: /freebsd/sys/contrib/openzfs/module/zfs/spa_history.c (revision dd41de95a84d979615a2ef11df6850622bf6184e)
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 
22 /*
23  * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2011, 2018 by Delphix. All rights reserved.
25  * Copyright (c) 2014 Integros [integros.com]
26  * Copyright 2017 Joyent, Inc.
27  */
28 
29 #include <sys/spa.h>
30 #include <sys/spa_impl.h>
31 #include <sys/zap.h>
32 #include <sys/dsl_synctask.h>
33 #include <sys/dmu_tx.h>
34 #include <sys/dmu_objset.h>
35 #include <sys/dsl_dataset.h>
36 #include <sys/dsl_dir.h>
37 #include <sys/cmn_err.h>
38 #include <sys/sunddi.h>
39 #include <sys/cred.h>
40 #include "zfs_comutil.h"
41 #include "zfs_gitrev.h"
42 #ifdef _KERNEL
43 #include <sys/zone.h>
44 #endif
45 
46 /*
47  * Routines to manage the on-disk history log.
48  *
49  * The history log is stored as a dmu object containing
50  * <packed record length, record nvlist> tuples.
51  *
52  * Where "record nvlist" is an nvlist containing uint64_ts and strings, and
53  * "packed record length" is the packed length of the "record nvlist" stored
54  * as a little endian uint64_t.
55  *
56  * The log is implemented as a ring buffer, though the original creation
57  * of the pool ('zpool create') is never overwritten.
58  *
59  * The history log is tracked as object 'spa_t::spa_history'.  The bonus buffer
60  * of 'spa_history' stores the offsets for logging/retrieving history as
61  * 'spa_history_phys_t'.  'sh_pool_create_len' is the ending offset in bytes of
62  * where the 'zpool create' record is stored.  This allows us to never
63  * overwrite the original creation of the pool.  'sh_phys_max_off' is the
64  * physical ending offset in bytes of the log.  This tells you the length of
65  * the buffer. 'sh_eof' is the logical EOF (in bytes).  Whenever a record
66  * is added, 'sh_eof' is incremented by the size of the record.
67  * 'sh_eof' is never decremented.  'sh_bof' is the logical BOF (in bytes).
68  * This is where the consumer should start reading from after reading in
69  * the 'zpool create' portion of the log.
70  *
71  * 'sh_records_lost' keeps track of how many records have been overwritten
72  * and permanently lost.
73  */
74 
75 /* convert a logical offset to physical */
76 static uint64_t
77 spa_history_log_to_phys(uint64_t log_off, spa_history_phys_t *shpp)
78 {
79 	uint64_t phys_len;
80 
81 	phys_len = shpp->sh_phys_max_off - shpp->sh_pool_create_len;
82 	return ((log_off - shpp->sh_pool_create_len) % phys_len
83 	    + shpp->sh_pool_create_len);
84 }
85 
86 void
87 spa_history_create_obj(spa_t *spa, dmu_tx_t *tx)
88 {
89 	dmu_buf_t *dbp;
90 	spa_history_phys_t *shpp;
91 	objset_t *mos = spa->spa_meta_objset;
92 
93 	ASSERT0(spa->spa_history);
94 	spa->spa_history = dmu_object_alloc(mos, DMU_OT_SPA_HISTORY,
95 	    SPA_OLD_MAXBLOCKSIZE, DMU_OT_SPA_HISTORY_OFFSETS,
96 	    sizeof (spa_history_phys_t), tx);
97 
98 	VERIFY0(zap_add(mos, DMU_POOL_DIRECTORY_OBJECT,
99 	    DMU_POOL_HISTORY, sizeof (uint64_t), 1,
100 	    &spa->spa_history, tx));
101 
102 	VERIFY0(dmu_bonus_hold(mos, spa->spa_history, FTAG, &dbp));
103 	ASSERT3U(dbp->db_size, >=, sizeof (spa_history_phys_t));
104 
105 	shpp = dbp->db_data;
106 	dmu_buf_will_dirty(dbp, tx);
107 
108 	/*
109 	 * Figure out maximum size of history log.  We set it at
110 	 * 0.1% of pool size, with a max of 1G and min of 128KB.
111 	 */
112 	shpp->sh_phys_max_off =
113 	    metaslab_class_get_dspace(spa_normal_class(spa)) / 1000;
114 	shpp->sh_phys_max_off = MIN(shpp->sh_phys_max_off, 1<<30);
115 	shpp->sh_phys_max_off = MAX(shpp->sh_phys_max_off, 128<<10);
116 
117 	dmu_buf_rele(dbp, FTAG);
118 }
119 
120 /*
121  * Change 'sh_bof' to the beginning of the next record.
122  */
123 static int
124 spa_history_advance_bof(spa_t *spa, spa_history_phys_t *shpp)
125 {
126 	objset_t *mos = spa->spa_meta_objset;
127 	uint64_t firstread, reclen, phys_bof;
128 	char buf[sizeof (reclen)];
129 	int err;
130 
131 	phys_bof = spa_history_log_to_phys(shpp->sh_bof, shpp);
132 	firstread = MIN(sizeof (reclen), shpp->sh_phys_max_off - phys_bof);
133 
134 	if ((err = dmu_read(mos, spa->spa_history, phys_bof, firstread,
135 	    buf, DMU_READ_PREFETCH)) != 0)
136 		return (err);
137 	if (firstread != sizeof (reclen)) {
138 		if ((err = dmu_read(mos, spa->spa_history,
139 		    shpp->sh_pool_create_len, sizeof (reclen) - firstread,
140 		    buf + firstread, DMU_READ_PREFETCH)) != 0)
141 			return (err);
142 	}
143 
144 	reclen = LE_64(*((uint64_t *)buf));
145 	shpp->sh_bof += reclen + sizeof (reclen);
146 	shpp->sh_records_lost++;
147 	return (0);
148 }
149 
150 static int
151 spa_history_write(spa_t *spa, void *buf, uint64_t len, spa_history_phys_t *shpp,
152     dmu_tx_t *tx)
153 {
154 	uint64_t firstwrite, phys_eof;
155 	objset_t *mos = spa->spa_meta_objset;
156 	int err;
157 
158 	ASSERT(MUTEX_HELD(&spa->spa_history_lock));
159 
160 	/* see if we need to reset logical BOF */
161 	while (shpp->sh_phys_max_off - shpp->sh_pool_create_len -
162 	    (shpp->sh_eof - shpp->sh_bof) <= len) {
163 		if ((err = spa_history_advance_bof(spa, shpp)) != 0) {
164 			return (err);
165 		}
166 	}
167 
168 	phys_eof = spa_history_log_to_phys(shpp->sh_eof, shpp);
169 	firstwrite = MIN(len, shpp->sh_phys_max_off - phys_eof);
170 	shpp->sh_eof += len;
171 	dmu_write(mos, spa->spa_history, phys_eof, firstwrite, buf, tx);
172 
173 	len -= firstwrite;
174 	if (len > 0) {
175 		/* write out the rest at the beginning of physical file */
176 		dmu_write(mos, spa->spa_history, shpp->sh_pool_create_len,
177 		    len, (char *)buf + firstwrite, tx);
178 	}
179 
180 	return (0);
181 }
182 
183 /*
184  * Post a history sysevent.
185  *
186  * The nvlist_t* passed into this function will be transformed into a new
187  * nvlist where:
188  *
189  * 1. Nested nvlists will be flattened to a single level
190  * 2. Keys will have their names normalized (to remove any problematic
191  * characters, such as whitespace)
192  *
193  * The nvlist_t passed into this function will duplicated and should be freed
194  * by caller.
195  *
196  */
197 static void
198 spa_history_log_notify(spa_t *spa, nvlist_t *nvl)
199 {
200 	nvlist_t *hist_nvl = fnvlist_alloc();
201 	uint64_t uint64;
202 	char *string;
203 
204 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_CMD, &string) == 0)
205 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_CMD, string);
206 
207 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME, &string) == 0)
208 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_INT_NAME, string);
209 
210 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_ZONE, &string) == 0)
211 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_ZONE, string);
212 
213 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_HOST, &string) == 0)
214 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_HOST, string);
215 
216 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_DSNAME, &string) == 0)
217 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_DSNAME, string);
218 
219 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_INT_STR, &string) == 0)
220 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_INT_STR, string);
221 
222 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_IOCTL, &string) == 0)
223 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_IOCTL, string);
224 
225 	if (nvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME, &string) == 0)
226 		fnvlist_add_string(hist_nvl, ZFS_EV_HIST_INT_NAME, string);
227 
228 	if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_DSID, &uint64) == 0)
229 		fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_DSID, uint64);
230 
231 	if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG, &uint64) == 0)
232 		fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_TXG, uint64);
233 
234 	if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_TIME, &uint64) == 0)
235 		fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_TIME, uint64);
236 
237 	if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_WHO, &uint64) == 0)
238 		fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_WHO, uint64);
239 
240 	if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_INT_EVENT, &uint64) == 0)
241 		fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_INT_EVENT, uint64);
242 
243 	spa_event_notify(spa, NULL, hist_nvl, ESC_ZFS_HISTORY_EVENT);
244 
245 	nvlist_free(hist_nvl);
246 }
247 
248 /*
249  * Write out a history event.
250  */
251 /*ARGSUSED*/
252 static void
253 spa_history_log_sync(void *arg, dmu_tx_t *tx)
254 {
255 	nvlist_t	*nvl = arg;
256 	spa_t		*spa = dmu_tx_pool(tx)->dp_spa;
257 	objset_t	*mos = spa->spa_meta_objset;
258 	dmu_buf_t	*dbp;
259 	spa_history_phys_t *shpp;
260 	size_t		reclen;
261 	uint64_t	le_len;
262 	char		*record_packed = NULL;
263 	int		ret;
264 
265 	/*
266 	 * If we have an older pool that doesn't have a command
267 	 * history object, create it now.
268 	 */
269 	mutex_enter(&spa->spa_history_lock);
270 	if (!spa->spa_history)
271 		spa_history_create_obj(spa, tx);
272 	mutex_exit(&spa->spa_history_lock);
273 
274 	/*
275 	 * Get the offset of where we need to write via the bonus buffer.
276 	 * Update the offset when the write completes.
277 	 */
278 	VERIFY0(dmu_bonus_hold(mos, spa->spa_history, FTAG, &dbp));
279 	shpp = dbp->db_data;
280 
281 	dmu_buf_will_dirty(dbp, tx);
282 
283 #ifdef ZFS_DEBUG
284 	{
285 		dmu_object_info_t doi;
286 		dmu_object_info_from_db(dbp, &doi);
287 		ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
288 	}
289 #endif
290 
291 	fnvlist_add_string(nvl, ZPOOL_HIST_HOST, utsname()->nodename);
292 
293 	if (nvlist_exists(nvl, ZPOOL_HIST_CMD)) {
294 		zfs_dbgmsg("command: %s",
295 		    fnvlist_lookup_string(nvl, ZPOOL_HIST_CMD));
296 	} else if (nvlist_exists(nvl, ZPOOL_HIST_INT_NAME)) {
297 		if (nvlist_exists(nvl, ZPOOL_HIST_DSNAME)) {
298 			zfs_dbgmsg("txg %lld %s %s (id %llu) %s",
299 			    fnvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG),
300 			    fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME),
301 			    fnvlist_lookup_string(nvl, ZPOOL_HIST_DSNAME),
302 			    fnvlist_lookup_uint64(nvl, ZPOOL_HIST_DSID),
303 			    fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_STR));
304 		} else {
305 			zfs_dbgmsg("txg %lld %s %s",
306 			    fnvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG),
307 			    fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME),
308 			    fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_STR));
309 		}
310 		/*
311 		 * The history sysevent is posted only for internal history
312 		 * messages to show what has happened, not how it happened. For
313 		 * example, the following command:
314 		 *
315 		 * # zfs destroy -r tank/foo
316 		 *
317 		 * will result in one sysevent posted per dataset that is
318 		 * destroyed as a result of the command - which could be more
319 		 * than one event in total.  By contrast, if the sysevent was
320 		 * posted as a result of the ZPOOL_HIST_CMD key being present
321 		 * it would result in only one sysevent being posted with the
322 		 * full command line arguments, requiring the consumer to know
323 		 * how to parse and understand zfs(8) command invocations.
324 		 */
325 		spa_history_log_notify(spa, nvl);
326 	} else if (nvlist_exists(nvl, ZPOOL_HIST_IOCTL)) {
327 		zfs_dbgmsg("ioctl %s",
328 		    fnvlist_lookup_string(nvl, ZPOOL_HIST_IOCTL));
329 	}
330 
331 	VERIFY3U(nvlist_pack(nvl, &record_packed, &reclen, NV_ENCODE_NATIVE,
332 	    KM_SLEEP), ==, 0);
333 
334 	mutex_enter(&spa->spa_history_lock);
335 
336 	/* write out the packed length as little endian */
337 	le_len = LE_64((uint64_t)reclen);
338 	ret = spa_history_write(spa, &le_len, sizeof (le_len), shpp, tx);
339 	if (!ret)
340 		ret = spa_history_write(spa, record_packed, reclen, shpp, tx);
341 
342 	/* The first command is the create, which we keep forever */
343 	if (ret == 0 && shpp->sh_pool_create_len == 0 &&
344 	    nvlist_exists(nvl, ZPOOL_HIST_CMD)) {
345 		shpp->sh_pool_create_len = shpp->sh_bof = shpp->sh_eof;
346 	}
347 
348 	mutex_exit(&spa->spa_history_lock);
349 	fnvlist_pack_free(record_packed, reclen);
350 	dmu_buf_rele(dbp, FTAG);
351 	fnvlist_free(nvl);
352 }
353 
354 /*
355  * Write out a history event.
356  */
357 int
358 spa_history_log(spa_t *spa, const char *msg)
359 {
360 	int err;
361 	nvlist_t *nvl = fnvlist_alloc();
362 
363 	fnvlist_add_string(nvl, ZPOOL_HIST_CMD, msg);
364 	err = spa_history_log_nvl(spa, nvl);
365 	fnvlist_free(nvl);
366 	return (err);
367 }
368 
369 int
370 spa_history_log_nvl(spa_t *spa, nvlist_t *nvl)
371 {
372 	int err = 0;
373 	dmu_tx_t *tx;
374 	nvlist_t *nvarg, *in_nvl = NULL;
375 
376 	if (spa_version(spa) < SPA_VERSION_ZPOOL_HISTORY || !spa_writeable(spa))
377 		return (SET_ERROR(EINVAL));
378 
379 	err = nvlist_lookup_nvlist(nvl, ZPOOL_HIST_INPUT_NVL, &in_nvl);
380 	if (err == 0) {
381 		(void) nvlist_remove_all(in_nvl, ZPOOL_HIDDEN_ARGS);
382 	}
383 
384 	tx = dmu_tx_create_dd(spa_get_dsl(spa)->dp_mos_dir);
385 	err = dmu_tx_assign(tx, TXG_WAIT);
386 	if (err) {
387 		dmu_tx_abort(tx);
388 		return (err);
389 	}
390 
391 	VERIFY0(nvlist_dup(nvl, &nvarg, KM_SLEEP));
392 	if (spa_history_zone() != NULL) {
393 		fnvlist_add_string(nvarg, ZPOOL_HIST_ZONE,
394 		    spa_history_zone());
395 	}
396 	fnvlist_add_uint64(nvarg, ZPOOL_HIST_WHO, crgetruid(CRED()));
397 
398 	/*
399 	 * Since the history is recorded asynchronously, the effective time is
400 	 * now, which may be considerably before the change is made on disk.
401 	 */
402 	fnvlist_add_uint64(nvarg, ZPOOL_HIST_TIME, gethrestime_sec());
403 
404 	/* Kick this off asynchronously; errors are ignored. */
405 	dsl_sync_task_nowait(spa_get_dsl(spa), spa_history_log_sync, nvarg, tx);
406 	dmu_tx_commit(tx);
407 
408 	/* spa_history_log_sync will free nvl */
409 	return (err);
410 }
411 
412 /*
413  * Read out the command history.
414  */
415 int
416 spa_history_get(spa_t *spa, uint64_t *offp, uint64_t *len, char *buf)
417 {
418 	objset_t *mos = spa->spa_meta_objset;
419 	dmu_buf_t *dbp;
420 	uint64_t read_len, phys_read_off, phys_eof;
421 	uint64_t leftover = 0;
422 	spa_history_phys_t *shpp;
423 	int err;
424 
425 	/*
426 	 * If the command history doesn't exist (older pool),
427 	 * that's ok, just return ENOENT.
428 	 */
429 	if (!spa->spa_history)
430 		return (SET_ERROR(ENOENT));
431 
432 	/*
433 	 * The history is logged asynchronously, so when they request
434 	 * the first chunk of history, make sure everything has been
435 	 * synced to disk so that we get it.
436 	 */
437 	if (*offp == 0 && spa_writeable(spa))
438 		txg_wait_synced(spa_get_dsl(spa), 0);
439 
440 	if ((err = dmu_bonus_hold(mos, spa->spa_history, FTAG, &dbp)) != 0)
441 		return (err);
442 	shpp = dbp->db_data;
443 
444 #ifdef ZFS_DEBUG
445 	{
446 		dmu_object_info_t doi;
447 		dmu_object_info_from_db(dbp, &doi);
448 		ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
449 	}
450 #endif
451 
452 	mutex_enter(&spa->spa_history_lock);
453 	phys_eof = spa_history_log_to_phys(shpp->sh_eof, shpp);
454 
455 	if (*offp < shpp->sh_pool_create_len) {
456 		/* read in just the zpool create history */
457 		phys_read_off = *offp;
458 		read_len = MIN(*len, shpp->sh_pool_create_len -
459 		    phys_read_off);
460 	} else {
461 		/*
462 		 * Need to reset passed in offset to BOF if the passed in
463 		 * offset has since been overwritten.
464 		 */
465 		*offp = MAX(*offp, shpp->sh_bof);
466 		phys_read_off = spa_history_log_to_phys(*offp, shpp);
467 
468 		/*
469 		 * Read up to the minimum of what the user passed down or
470 		 * the EOF (physical or logical).  If we hit physical EOF,
471 		 * use 'leftover' to read from the physical BOF.
472 		 */
473 		if (phys_read_off <= phys_eof) {
474 			read_len = MIN(*len, phys_eof - phys_read_off);
475 		} else {
476 			read_len = MIN(*len,
477 			    shpp->sh_phys_max_off - phys_read_off);
478 			if (phys_read_off + *len > shpp->sh_phys_max_off) {
479 				leftover = MIN(*len - read_len,
480 				    phys_eof - shpp->sh_pool_create_len);
481 			}
482 		}
483 	}
484 
485 	/* offset for consumer to use next */
486 	*offp += read_len + leftover;
487 
488 	/* tell the consumer how much you actually read */
489 	*len = read_len + leftover;
490 
491 	if (read_len == 0) {
492 		mutex_exit(&spa->spa_history_lock);
493 		dmu_buf_rele(dbp, FTAG);
494 		return (0);
495 	}
496 
497 	err = dmu_read(mos, spa->spa_history, phys_read_off, read_len, buf,
498 	    DMU_READ_PREFETCH);
499 	if (leftover && err == 0) {
500 		err = dmu_read(mos, spa->spa_history, shpp->sh_pool_create_len,
501 		    leftover, buf + read_len, DMU_READ_PREFETCH);
502 	}
503 	mutex_exit(&spa->spa_history_lock);
504 
505 	dmu_buf_rele(dbp, FTAG);
506 	return (err);
507 }
508 
509 /*
510  * The nvlist will be consumed by this call.
511  */
512 static void
513 log_internal(nvlist_t *nvl, const char *operation, spa_t *spa,
514     dmu_tx_t *tx, const char *fmt, va_list adx)
515 {
516 	char *msg;
517 
518 	/*
519 	 * If this is part of creating a pool, not everything is
520 	 * initialized yet, so don't bother logging the internal events.
521 	 * Likewise if the pool is not writeable.
522 	 */
523 	if (spa_is_initializing(spa) || !spa_writeable(spa)) {
524 		fnvlist_free(nvl);
525 		return;
526 	}
527 
528 	msg = kmem_vasprintf(fmt, adx);
529 	fnvlist_add_string(nvl, ZPOOL_HIST_INT_STR, msg);
530 	kmem_strfree(msg);
531 
532 	fnvlist_add_string(nvl, ZPOOL_HIST_INT_NAME, operation);
533 	fnvlist_add_uint64(nvl, ZPOOL_HIST_TXG, tx->tx_txg);
534 	fnvlist_add_uint64(nvl, ZPOOL_HIST_TIME, gethrestime_sec());
535 
536 	if (dmu_tx_is_syncing(tx)) {
537 		spa_history_log_sync(nvl, tx);
538 	} else {
539 		dsl_sync_task_nowait(spa_get_dsl(spa),
540 		    spa_history_log_sync, nvl, tx);
541 	}
542 	/* spa_history_log_sync() will free nvl */
543 }
544 
545 void
546 spa_history_log_internal(spa_t *spa, const char *operation,
547     dmu_tx_t *tx, const char *fmt, ...)
548 {
549 	dmu_tx_t *htx = tx;
550 	va_list adx;
551 
552 	/* create a tx if we didn't get one */
553 	if (tx == NULL) {
554 		htx = dmu_tx_create_dd(spa_get_dsl(spa)->dp_mos_dir);
555 		if (dmu_tx_assign(htx, TXG_WAIT) != 0) {
556 			dmu_tx_abort(htx);
557 			return;
558 		}
559 	}
560 
561 	va_start(adx, fmt);
562 	log_internal(fnvlist_alloc(), operation, spa, htx, fmt, adx);
563 	va_end(adx);
564 
565 	/* if we didn't get a tx from the caller, commit the one we made */
566 	if (tx == NULL)
567 		dmu_tx_commit(htx);
568 }
569 
570 void
571 spa_history_log_internal_ds(dsl_dataset_t *ds, const char *operation,
572     dmu_tx_t *tx, const char *fmt, ...)
573 {
574 	va_list adx;
575 	char namebuf[ZFS_MAX_DATASET_NAME_LEN];
576 	nvlist_t *nvl = fnvlist_alloc();
577 
578 	ASSERT(tx != NULL);
579 
580 	dsl_dataset_name(ds, namebuf);
581 	fnvlist_add_string(nvl, ZPOOL_HIST_DSNAME, namebuf);
582 	fnvlist_add_uint64(nvl, ZPOOL_HIST_DSID, ds->ds_object);
583 
584 	va_start(adx, fmt);
585 	log_internal(nvl, operation, dsl_dataset_get_spa(ds), tx, fmt, adx);
586 	va_end(adx);
587 }
588 
589 void
590 spa_history_log_internal_dd(dsl_dir_t *dd, const char *operation,
591     dmu_tx_t *tx, const char *fmt, ...)
592 {
593 	va_list adx;
594 	char namebuf[ZFS_MAX_DATASET_NAME_LEN];
595 	nvlist_t *nvl = fnvlist_alloc();
596 
597 	ASSERT(tx != NULL);
598 
599 	dsl_dir_name(dd, namebuf);
600 	fnvlist_add_string(nvl, ZPOOL_HIST_DSNAME, namebuf);
601 	fnvlist_add_uint64(nvl, ZPOOL_HIST_DSID,
602 	    dsl_dir_phys(dd)->dd_head_dataset_obj);
603 
604 	va_start(adx, fmt);
605 	log_internal(nvl, operation, dd->dd_pool->dp_spa, tx, fmt, adx);
606 	va_end(adx);
607 }
608 
609 void
610 spa_history_log_version(spa_t *spa, const char *operation, dmu_tx_t *tx)
611 {
612 	utsname_t *u = utsname();
613 
614 	spa_history_log_internal(spa, operation, tx,
615 	    "pool version %llu; software version %s; uts %s %s %s %s",
616 	    (u_longlong_t)spa_version(spa), ZFS_META_GITREV,
617 	    u->nodename, u->release, u->version, u->machine);
618 }
619 
620 #ifndef _KERNEL
621 const char *
622 spa_history_zone(void)
623 {
624 	return (NULL);
625 }
626 #endif
627 
628 #if defined(_KERNEL)
629 EXPORT_SYMBOL(spa_history_create_obj);
630 EXPORT_SYMBOL(spa_history_get);
631 EXPORT_SYMBOL(spa_history_log);
632 EXPORT_SYMBOL(spa_history_log_internal);
633 EXPORT_SYMBOL(spa_history_log_version);
634 #endif
635