]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/spa_history.c
Get rid of space_map_update() for ms_synced_length
[mirror_zfs.git] / module / zfs / spa_history.c
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, 2015 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 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 static char *
184 spa_history_zone(void)
185 {
186 #ifdef _KERNEL
187 return ("linux");
188 #else
189 return (NULL);
190 #endif
191 }
192
193 /*
194 * Post a history sysevent.
195 *
196 * The nvlist_t* passed into this function will be transformed into a new
197 * nvlist where:
198 *
199 * 1. Nested nvlists will be flattened to a single level
200 * 2. Keys will have their names normalized (to remove any problematic
201 * characters, such as whitespace)
202 *
203 * The nvlist_t passed into this function will duplicated and should be freed
204 * by caller.
205 *
206 */
207 static void
208 spa_history_log_notify(spa_t *spa, nvlist_t *nvl)
209 {
210 nvlist_t *hist_nvl = fnvlist_alloc();
211 uint64_t uint64;
212 char *string;
213
214 if (nvlist_lookup_string(nvl, ZPOOL_HIST_CMD, &string) == 0)
215 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_CMD, string);
216
217 if (nvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME, &string) == 0)
218 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_INT_NAME, string);
219
220 if (nvlist_lookup_string(nvl, ZPOOL_HIST_ZONE, &string) == 0)
221 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_ZONE, string);
222
223 if (nvlist_lookup_string(nvl, ZPOOL_HIST_HOST, &string) == 0)
224 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_HOST, string);
225
226 if (nvlist_lookup_string(nvl, ZPOOL_HIST_DSNAME, &string) == 0)
227 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_DSNAME, string);
228
229 if (nvlist_lookup_string(nvl, ZPOOL_HIST_INT_STR, &string) == 0)
230 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_INT_STR, string);
231
232 if (nvlist_lookup_string(nvl, ZPOOL_HIST_IOCTL, &string) == 0)
233 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_IOCTL, string);
234
235 if (nvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME, &string) == 0)
236 fnvlist_add_string(hist_nvl, ZFS_EV_HIST_INT_NAME, string);
237
238 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_DSID, &uint64) == 0)
239 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_DSID, uint64);
240
241 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG, &uint64) == 0)
242 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_TXG, uint64);
243
244 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_TIME, &uint64) == 0)
245 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_TIME, uint64);
246
247 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_WHO, &uint64) == 0)
248 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_WHO, uint64);
249
250 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_INT_EVENT, &uint64) == 0)
251 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_INT_EVENT, uint64);
252
253 spa_event_notify(spa, NULL, hist_nvl, ESC_ZFS_HISTORY_EVENT);
254
255 nvlist_free(hist_nvl);
256 }
257
258 /*
259 * Write out a history event.
260 */
261 /*ARGSUSED*/
262 static void
263 spa_history_log_sync(void *arg, dmu_tx_t *tx)
264 {
265 nvlist_t *nvl = arg;
266 spa_t *spa = dmu_tx_pool(tx)->dp_spa;
267 objset_t *mos = spa->spa_meta_objset;
268 dmu_buf_t *dbp;
269 spa_history_phys_t *shpp;
270 size_t reclen;
271 uint64_t le_len;
272 char *record_packed = NULL;
273 int ret;
274
275 /*
276 * If we have an older pool that doesn't have a command
277 * history object, create it now.
278 */
279 mutex_enter(&spa->spa_history_lock);
280 if (!spa->spa_history)
281 spa_history_create_obj(spa, tx);
282 mutex_exit(&spa->spa_history_lock);
283
284 /*
285 * Get the offset of where we need to write via the bonus buffer.
286 * Update the offset when the write completes.
287 */
288 VERIFY0(dmu_bonus_hold(mos, spa->spa_history, FTAG, &dbp));
289 shpp = dbp->db_data;
290
291 dmu_buf_will_dirty(dbp, tx);
292
293 #ifdef ZFS_DEBUG
294 {
295 dmu_object_info_t doi;
296 dmu_object_info_from_db(dbp, &doi);
297 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
298 }
299 #endif
300
301 fnvlist_add_uint64(nvl, ZPOOL_HIST_TIME, gethrestime_sec());
302 fnvlist_add_string(nvl, ZPOOL_HIST_HOST, utsname()->nodename);
303
304 if (nvlist_exists(nvl, ZPOOL_HIST_CMD)) {
305 zfs_dbgmsg("command: %s",
306 fnvlist_lookup_string(nvl, ZPOOL_HIST_CMD));
307 } else if (nvlist_exists(nvl, ZPOOL_HIST_INT_NAME)) {
308 if (nvlist_exists(nvl, ZPOOL_HIST_DSNAME)) {
309 zfs_dbgmsg("txg %lld %s %s (id %llu) %s",
310 fnvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG),
311 fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME),
312 fnvlist_lookup_string(nvl, ZPOOL_HIST_DSNAME),
313 fnvlist_lookup_uint64(nvl, ZPOOL_HIST_DSID),
314 fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_STR));
315 } else {
316 zfs_dbgmsg("txg %lld %s %s",
317 fnvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG),
318 fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_NAME),
319 fnvlist_lookup_string(nvl, ZPOOL_HIST_INT_STR));
320 }
321 /*
322 * The history sysevent is posted only for internal history
323 * messages to show what has happened, not how it happened. For
324 * example, the following command:
325 *
326 * # zfs destroy -r tank/foo
327 *
328 * will result in one sysevent posted per dataset that is
329 * destroyed as a result of the command - which could be more
330 * than one event in total. By contrast, if the sysevent was
331 * posted as a result of the ZPOOL_HIST_CMD key being present
332 * it would result in only one sysevent being posted with the
333 * full command line arguments, requiring the consumer to know
334 * how to parse and understand zfs(1M) command invocations.
335 */
336 spa_history_log_notify(spa, nvl);
337 } else if (nvlist_exists(nvl, ZPOOL_HIST_IOCTL)) {
338 zfs_dbgmsg("ioctl %s",
339 fnvlist_lookup_string(nvl, ZPOOL_HIST_IOCTL));
340 }
341
342 VERIFY3U(nvlist_pack(nvl, &record_packed, &reclen, NV_ENCODE_NATIVE,
343 KM_SLEEP), ==, 0);
344
345 mutex_enter(&spa->spa_history_lock);
346
347 /* write out the packed length as little endian */
348 le_len = LE_64((uint64_t)reclen);
349 ret = spa_history_write(spa, &le_len, sizeof (le_len), shpp, tx);
350 if (!ret)
351 ret = spa_history_write(spa, record_packed, reclen, shpp, tx);
352
353 /* The first command is the create, which we keep forever */
354 if (ret == 0 && shpp->sh_pool_create_len == 0 &&
355 nvlist_exists(nvl, ZPOOL_HIST_CMD)) {
356 shpp->sh_pool_create_len = shpp->sh_bof = shpp->sh_eof;
357 }
358
359 mutex_exit(&spa->spa_history_lock);
360 fnvlist_pack_free(record_packed, reclen);
361 dmu_buf_rele(dbp, FTAG);
362 fnvlist_free(nvl);
363 }
364
365 /*
366 * Write out a history event.
367 */
368 int
369 spa_history_log(spa_t *spa, const char *msg)
370 {
371 int err;
372 nvlist_t *nvl = fnvlist_alloc();
373
374 fnvlist_add_string(nvl, ZPOOL_HIST_CMD, msg);
375 err = spa_history_log_nvl(spa, nvl);
376 fnvlist_free(nvl);
377 return (err);
378 }
379
380 int
381 spa_history_log_nvl(spa_t *spa, nvlist_t *nvl)
382 {
383 int err = 0;
384 dmu_tx_t *tx;
385 nvlist_t *nvarg, *in_nvl = NULL;
386
387 if (spa_version(spa) < SPA_VERSION_ZPOOL_HISTORY || !spa_writeable(spa))
388 return (SET_ERROR(EINVAL));
389
390 err = nvlist_lookup_nvlist(nvl, ZPOOL_HIST_INPUT_NVL, &in_nvl);
391 if (err == 0) {
392 (void) nvlist_remove_all(in_nvl, ZPOOL_HIDDEN_ARGS);
393 }
394
395 tx = dmu_tx_create_dd(spa_get_dsl(spa)->dp_mos_dir);
396 err = dmu_tx_assign(tx, TXG_WAIT);
397 if (err) {
398 dmu_tx_abort(tx);
399 return (err);
400 }
401
402 VERIFY0(nvlist_dup(nvl, &nvarg, KM_SLEEP));
403 if (spa_history_zone() != NULL) {
404 fnvlist_add_string(nvarg, ZPOOL_HIST_ZONE,
405 spa_history_zone());
406 }
407 fnvlist_add_uint64(nvarg, ZPOOL_HIST_WHO, crgetruid(CRED()));
408
409 /* Kick this off asynchronously; errors are ignored. */
410 dsl_sync_task_nowait(spa_get_dsl(spa), spa_history_log_sync,
411 nvarg, 0, ZFS_SPACE_CHECK_NONE, tx);
412 dmu_tx_commit(tx);
413
414 /* spa_history_log_sync will free nvl */
415 return (err);
416
417 }
418
419 /*
420 * Read out the command history.
421 */
422 int
423 spa_history_get(spa_t *spa, uint64_t *offp, uint64_t *len, char *buf)
424 {
425 objset_t *mos = spa->spa_meta_objset;
426 dmu_buf_t *dbp;
427 uint64_t read_len, phys_read_off, phys_eof;
428 uint64_t leftover = 0;
429 spa_history_phys_t *shpp;
430 int err;
431
432 /*
433 * If the command history doesn't exist (older pool),
434 * that's ok, just return ENOENT.
435 */
436 if (!spa->spa_history)
437 return (SET_ERROR(ENOENT));
438
439 /*
440 * The history is logged asynchronously, so when they request
441 * the first chunk of history, make sure everything has been
442 * synced to disk so that we get it.
443 */
444 if (*offp == 0 && spa_writeable(spa))
445 txg_wait_synced(spa_get_dsl(spa), 0);
446
447 if ((err = dmu_bonus_hold(mos, spa->spa_history, FTAG, &dbp)) != 0)
448 return (err);
449 shpp = dbp->db_data;
450
451 #ifdef ZFS_DEBUG
452 {
453 dmu_object_info_t doi;
454 dmu_object_info_from_db(dbp, &doi);
455 ASSERT3U(doi.doi_bonus_type, ==, DMU_OT_SPA_HISTORY_OFFSETS);
456 }
457 #endif
458
459 mutex_enter(&spa->spa_history_lock);
460 phys_eof = spa_history_log_to_phys(shpp->sh_eof, shpp);
461
462 if (*offp < shpp->sh_pool_create_len) {
463 /* read in just the zpool create history */
464 phys_read_off = *offp;
465 read_len = MIN(*len, shpp->sh_pool_create_len -
466 phys_read_off);
467 } else {
468 /*
469 * Need to reset passed in offset to BOF if the passed in
470 * offset has since been overwritten.
471 */
472 *offp = MAX(*offp, shpp->sh_bof);
473 phys_read_off = spa_history_log_to_phys(*offp, shpp);
474
475 /*
476 * Read up to the minimum of what the user passed down or
477 * the EOF (physical or logical). If we hit physical EOF,
478 * use 'leftover' to read from the physical BOF.
479 */
480 if (phys_read_off <= phys_eof) {
481 read_len = MIN(*len, phys_eof - phys_read_off);
482 } else {
483 read_len = MIN(*len,
484 shpp->sh_phys_max_off - phys_read_off);
485 if (phys_read_off + *len > shpp->sh_phys_max_off) {
486 leftover = MIN(*len - read_len,
487 phys_eof - shpp->sh_pool_create_len);
488 }
489 }
490 }
491
492 /* offset for consumer to use next */
493 *offp += read_len + leftover;
494
495 /* tell the consumer how much you actually read */
496 *len = read_len + leftover;
497
498 if (read_len == 0) {
499 mutex_exit(&spa->spa_history_lock);
500 dmu_buf_rele(dbp, FTAG);
501 return (0);
502 }
503
504 err = dmu_read(mos, spa->spa_history, phys_read_off, read_len, buf,
505 DMU_READ_PREFETCH);
506 if (leftover && err == 0) {
507 err = dmu_read(mos, spa->spa_history, shpp->sh_pool_create_len,
508 leftover, buf + read_len, DMU_READ_PREFETCH);
509 }
510 mutex_exit(&spa->spa_history_lock);
511
512 dmu_buf_rele(dbp, FTAG);
513 return (err);
514 }
515
516 /*
517 * The nvlist will be consumed by this call.
518 */
519 static void
520 log_internal(nvlist_t *nvl, const char *operation, spa_t *spa,
521 dmu_tx_t *tx, const char *fmt, va_list adx)
522 {
523 char *msg;
524
525 /*
526 * If this is part of creating a pool, not everything is
527 * initialized yet, so don't bother logging the internal events.
528 * Likewise if the pool is not writeable.
529 */
530 if (spa_is_initializing(spa) || !spa_writeable(spa)) {
531 fnvlist_free(nvl);
532 return;
533 }
534
535 msg = kmem_vasprintf(fmt, adx);
536 fnvlist_add_string(nvl, ZPOOL_HIST_INT_STR, msg);
537 strfree(msg);
538
539 fnvlist_add_string(nvl, ZPOOL_HIST_INT_NAME, operation);
540 fnvlist_add_uint64(nvl, ZPOOL_HIST_TXG, tx->tx_txg);
541
542 if (dmu_tx_is_syncing(tx)) {
543 spa_history_log_sync(nvl, tx);
544 } else {
545 dsl_sync_task_nowait(spa_get_dsl(spa),
546 spa_history_log_sync, nvl, 0, ZFS_SPACE_CHECK_NONE, tx);
547 }
548 /* spa_history_log_sync() will free nvl */
549 }
550
551 void
552 spa_history_log_internal(spa_t *spa, const char *operation,
553 dmu_tx_t *tx, const char *fmt, ...)
554 {
555 dmu_tx_t *htx = tx;
556 va_list adx;
557
558 /* create a tx if we didn't get one */
559 if (tx == NULL) {
560 htx = dmu_tx_create_dd(spa_get_dsl(spa)->dp_mos_dir);
561 if (dmu_tx_assign(htx, TXG_WAIT) != 0) {
562 dmu_tx_abort(htx);
563 return;
564 }
565 }
566
567 va_start(adx, fmt);
568 log_internal(fnvlist_alloc(), operation, spa, htx, fmt, adx);
569 va_end(adx);
570
571 /* if we didn't get a tx from the caller, commit the one we made */
572 if (tx == NULL)
573 dmu_tx_commit(htx);
574 }
575
576 void
577 spa_history_log_internal_ds(dsl_dataset_t *ds, const char *operation,
578 dmu_tx_t *tx, const char *fmt, ...)
579 {
580 va_list adx;
581 char namebuf[ZFS_MAX_DATASET_NAME_LEN];
582 nvlist_t *nvl = fnvlist_alloc();
583
584 ASSERT(tx != NULL);
585
586 dsl_dataset_name(ds, namebuf);
587 fnvlist_add_string(nvl, ZPOOL_HIST_DSNAME, namebuf);
588 fnvlist_add_uint64(nvl, ZPOOL_HIST_DSID, ds->ds_object);
589
590 va_start(adx, fmt);
591 log_internal(nvl, operation, dsl_dataset_get_spa(ds), tx, fmt, adx);
592 va_end(adx);
593 }
594
595 void
596 spa_history_log_internal_dd(dsl_dir_t *dd, const char *operation,
597 dmu_tx_t *tx, const char *fmt, ...)
598 {
599 va_list adx;
600 char namebuf[ZFS_MAX_DATASET_NAME_LEN];
601 nvlist_t *nvl = fnvlist_alloc();
602
603 ASSERT(tx != NULL);
604
605 dsl_dir_name(dd, namebuf);
606 fnvlist_add_string(nvl, ZPOOL_HIST_DSNAME, namebuf);
607 fnvlist_add_uint64(nvl, ZPOOL_HIST_DSID,
608 dsl_dir_phys(dd)->dd_head_dataset_obj);
609
610 va_start(adx, fmt);
611 log_internal(nvl, operation, dd->dd_pool->dp_spa, tx, fmt, adx);
612 va_end(adx);
613 }
614
615 void
616 spa_history_log_version(spa_t *spa, const char *operation, dmu_tx_t *tx)
617 {
618 utsname_t *u = utsname();
619
620 spa_history_log_internal(spa, operation, tx,
621 "pool version %llu; software version %s; uts %s %s %s %s",
622 (u_longlong_t)spa_version(spa), ZFS_META_GITREV,
623 u->nodename, u->release, u->version, u->machine);
624 }
625
626 #if defined(_KERNEL)
627 EXPORT_SYMBOL(spa_history_create_obj);
628 EXPORT_SYMBOL(spa_history_get);
629 EXPORT_SYMBOL(spa_history_log);
630 EXPORT_SYMBOL(spa_history_log_internal);
631 EXPORT_SYMBOL(spa_history_log_version);
632 #endif