2 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * $DragonFly: src/sys/vfs/hammer/hammer_ioctl.c,v 1.32 2008/11/13 02:23:29 dillon Exp $
39 static int hammer_ioc_gethistory(hammer_transaction_t trans, hammer_inode_t ip,
40 struct hammer_ioc_history *hist);
41 static int hammer_ioc_synctid(hammer_transaction_t trans, hammer_inode_t ip,
42 struct hammer_ioc_synctid *std);
43 static int hammer_ioc_get_version(hammer_transaction_t trans,
45 struct hammer_ioc_version *ver);
46 static int hammer_ioc_set_version(hammer_transaction_t trans,
48 struct hammer_ioc_version *ver);
49 static int hammer_ioc_get_info(hammer_transaction_t trans,
50 struct hammer_ioc_info *info);
51 static int hammer_ioc_add_snapshot(hammer_transaction_t trans, hammer_inode_t ip,
52 struct hammer_ioc_snapshot *snap);
53 static int hammer_ioc_del_snapshot(hammer_transaction_t trans, hammer_inode_t ip,
54 struct hammer_ioc_snapshot *snap);
55 static int hammer_ioc_get_snapshot(hammer_transaction_t trans, hammer_inode_t ip,
56 struct hammer_ioc_snapshot *snap);
57 static int hammer_ioc_get_config(hammer_transaction_t trans, hammer_inode_t ip,
58 struct hammer_ioc_config *snap);
59 static int hammer_ioc_set_config(hammer_transaction_t trans, hammer_inode_t ip,
60 struct hammer_ioc_config *snap);
61 static int hammer_ioc_get_data(hammer_transaction_t trans, hammer_inode_t ip,
62 struct hammer_ioc_data *data);
65 hammer_ioctl(hammer_inode_t ip, u_long com, caddr_t data, int fflag,
68 struct hammer_transaction trans;
71 error = priv_check_cred(cred, PRIV_HAMMER_IOCTL, 0);
73 hammer_start_transaction(&trans, ip->hmp);
78 error = hammer_ioc_prune(&trans, ip,
79 (struct hammer_ioc_prune *)data);
82 case HAMMERIOC_GETHISTORY:
83 error = hammer_ioc_gethistory(&trans, ip,
84 (struct hammer_ioc_history *)data);
86 case HAMMERIOC_REBLOCK:
88 error = hammer_ioc_reblock(&trans, ip,
89 (struct hammer_ioc_reblock *)data);
92 case HAMMERIOC_REBALANCE:
94 * Rebalancing needs to lock a lot of B-Tree nodes. The
95 * children and children's children. Systems with very
96 * little memory will not be able to do it.
98 if (error == 0 && nbuf < HAMMER_REBALANCE_MIN_BUFS) {
99 kprintf("hammer: System has insufficient buffers "
100 "to rebalance the tree. nbuf < %d\n",
101 HAMMER_REBALANCE_MIN_BUFS);
105 error = hammer_ioc_rebalance(&trans, ip,
106 (struct hammer_ioc_rebalance *)data);
109 case HAMMERIOC_SYNCTID:
110 error = hammer_ioc_synctid(&trans, ip,
111 (struct hammer_ioc_synctid *)data);
113 case HAMMERIOC_GET_PSEUDOFS:
114 error = hammer_ioc_get_pseudofs(&trans, ip,
115 (struct hammer_ioc_pseudofs_rw *)data);
117 case HAMMERIOC_SET_PSEUDOFS:
119 error = hammer_ioc_set_pseudofs(&trans, ip, cred,
120 (struct hammer_ioc_pseudofs_rw *)data);
123 case HAMMERIOC_UPG_PSEUDOFS:
125 error = hammer_ioc_upgrade_pseudofs(&trans, ip,
126 (struct hammer_ioc_pseudofs_rw *)data);
129 case HAMMERIOC_DGD_PSEUDOFS:
131 error = hammer_ioc_downgrade_pseudofs(&trans, ip,
132 (struct hammer_ioc_pseudofs_rw *)data);
135 case HAMMERIOC_RMR_PSEUDOFS:
137 error = hammer_ioc_destroy_pseudofs(&trans, ip,
138 (struct hammer_ioc_pseudofs_rw *)data);
141 case HAMMERIOC_WAI_PSEUDOFS:
143 error = hammer_ioc_wait_pseudofs(&trans, ip,
144 (struct hammer_ioc_pseudofs_rw *)data);
147 case HAMMERIOC_MIRROR_READ:
149 error = hammer_ioc_mirror_read(&trans, ip,
150 (struct hammer_ioc_mirror_rw *)data);
153 case HAMMERIOC_MIRROR_WRITE:
155 error = hammer_ioc_mirror_write(&trans, ip,
156 (struct hammer_ioc_mirror_rw *)data);
159 case HAMMERIOC_GET_VERSION:
160 error = hammer_ioc_get_version(&trans, ip,
161 (struct hammer_ioc_version *)data);
163 case HAMMERIOC_GET_INFO:
164 error = hammer_ioc_get_info(&trans,
165 (struct hammer_ioc_info *)data);
167 case HAMMERIOC_SET_VERSION:
169 error = hammer_ioc_set_version(&trans, ip,
170 (struct hammer_ioc_version *)data);
173 case HAMMERIOC_ADD_VOLUME:
175 error = priv_check_cred(cred, PRIV_HAMMER_VOLUME, 0);
177 error = hammer_ioc_volume_add(&trans, ip,
178 (struct hammer_ioc_volume *)data);
181 case HAMMERIOC_DEL_VOLUME:
183 error = priv_check_cred(cred, PRIV_HAMMER_VOLUME, 0);
185 error = hammer_ioc_volume_del(&trans, ip,
186 (struct hammer_ioc_volume *)data);
189 case HAMMERIOC_LIST_VOLUMES:
190 error = hammer_ioc_volume_list(&trans, ip,
191 (struct hammer_ioc_volume_list *)data);
193 case HAMMERIOC_ADD_SNAPSHOT:
195 error = hammer_ioc_add_snapshot(
196 &trans, ip, (struct hammer_ioc_snapshot *)data);
199 case HAMMERIOC_DEL_SNAPSHOT:
201 error = hammer_ioc_del_snapshot(
202 &trans, ip, (struct hammer_ioc_snapshot *)data);
205 case HAMMERIOC_GET_SNAPSHOT:
206 error = hammer_ioc_get_snapshot(
207 &trans, ip, (struct hammer_ioc_snapshot *)data);
209 case HAMMERIOC_GET_CONFIG:
210 error = hammer_ioc_get_config(
211 &trans, ip, (struct hammer_ioc_config *)data);
213 case HAMMERIOC_SET_CONFIG:
215 error = hammer_ioc_set_config(
216 &trans, ip, (struct hammer_ioc_config *)data);
219 case HAMMERIOC_DEDUP:
221 error = hammer_ioc_dedup(
222 &trans, ip, (struct hammer_ioc_dedup *)data);
225 case HAMMERIOC_GET_DATA:
227 error = hammer_ioc_get_data(
228 &trans, ip, (struct hammer_ioc_data *)data);
235 hammer_done_transaction(&trans);
240 * Iterate through an object's inode or an object's records and record
243 static void add_history(hammer_inode_t ip, struct hammer_ioc_history *hist,
244 hammer_btree_elm_t elm);
248 hammer_ioc_gethistory(hammer_transaction_t trans, hammer_inode_t ip,
249 struct hammer_ioc_history *hist)
251 struct hammer_cursor cursor;
252 hammer_btree_elm_t elm;
256 * Validate the structure and initialize for return.
258 if (hist->beg_tid > hist->end_tid)
260 if (hist->head.flags & HAMMER_IOC_HISTORY_ATKEY) {
261 if (hist->key > hist->nxt_key)
265 hist->obj_id = ip->obj_id;
267 hist->nxt_tid = hist->end_tid;
268 hist->head.flags &= ~HAMMER_IOC_HISTORY_NEXT_TID;
269 hist->head.flags &= ~HAMMER_IOC_HISTORY_NEXT_KEY;
270 hist->head.flags &= ~HAMMER_IOC_HISTORY_EOF;
271 hist->head.flags &= ~HAMMER_IOC_HISTORY_UNSYNCED;
272 if ((ip->flags & HAMMER_INODE_MODMASK) &
273 ~(HAMMER_INODE_ATIME | HAMMER_INODE_MTIME)) {
274 hist->head.flags |= HAMMER_IOC_HISTORY_UNSYNCED;
278 * Setup the cursor. We can't handle undeletable records
279 * (create_tid of 0) at the moment. A create_tid of 0 has
280 * a special meaning and cannot be specified in the cursor.
282 error = hammer_init_cursor(trans, &cursor, &ip->cache[0], NULL);
284 hammer_done_cursor(&cursor);
288 cursor.key_beg.obj_id = hist->obj_id;
289 cursor.key_beg.create_tid = hist->beg_tid;
290 cursor.key_beg.delete_tid = 0;
291 cursor.key_beg.obj_type = 0;
292 if (cursor.key_beg.create_tid == HAMMER_MIN_TID)
293 cursor.key_beg.create_tid = 1;
295 cursor.key_end.obj_id = hist->obj_id;
296 cursor.key_end.create_tid = hist->end_tid;
297 cursor.key_end.delete_tid = 0;
298 cursor.key_end.obj_type = 0;
300 cursor.flags |= HAMMER_CURSOR_END_EXCLUSIVE;
302 if (hist->head.flags & HAMMER_IOC_HISTORY_ATKEY) {
304 * key-range within the file. For a regular file the
305 * on-disk key represents BASE+LEN, not BASE, so the
306 * first possible record containing the offset 'key'
307 * has an on-disk key of (key + 1).
309 cursor.key_beg.key = hist->key;
310 cursor.key_end.key = HAMMER_MAX_KEY;
311 cursor.key_beg.localization = ip->obj_localization +
312 HAMMER_LOCALIZE_MISC;
313 cursor.key_end.localization = ip->obj_localization +
314 HAMMER_LOCALIZE_MISC;
316 switch(ip->ino_data.obj_type) {
317 case HAMMER_OBJTYPE_REGFILE:
318 ++cursor.key_beg.key;
319 cursor.key_beg.rec_type = HAMMER_RECTYPE_DATA;
321 case HAMMER_OBJTYPE_DIRECTORY:
322 cursor.key_beg.rec_type = HAMMER_RECTYPE_DIRENTRY;
323 cursor.key_beg.localization = ip->obj_localization +
324 hammer_dir_localization(ip);
325 cursor.key_end.localization = ip->obj_localization +
326 hammer_dir_localization(ip);
328 case HAMMER_OBJTYPE_DBFILE:
329 cursor.key_beg.rec_type = HAMMER_RECTYPE_DB;
335 cursor.key_end.rec_type = cursor.key_beg.rec_type;
340 cursor.key_beg.key = 0;
341 cursor.key_end.key = 0;
342 cursor.key_beg.rec_type = HAMMER_RECTYPE_INODE;
343 cursor.key_end.rec_type = HAMMER_RECTYPE_INODE;
344 cursor.key_beg.localization = ip->obj_localization +
345 HAMMER_LOCALIZE_INODE;
346 cursor.key_end.localization = ip->obj_localization +
347 HAMMER_LOCALIZE_INODE;
350 error = hammer_btree_first(&cursor);
352 elm = &cursor.node->ondisk->elms[cursor.index];
354 add_history(ip, hist, elm);
355 if (hist->head.flags & (HAMMER_IOC_HISTORY_NEXT_TID |
356 HAMMER_IOC_HISTORY_NEXT_KEY |
357 HAMMER_IOC_HISTORY_EOF)) {
360 error = hammer_btree_iterate(&cursor);
362 if (error == ENOENT) {
363 hist->head.flags |= HAMMER_IOC_HISTORY_EOF;
366 hammer_done_cursor(&cursor);
371 * Add the scanned element to the ioctl return structure. Some special
372 * casing is required for regular files to accomodate how data ranges are
376 add_history(hammer_inode_t ip, struct hammer_ioc_history *hist,
377 hammer_btree_elm_t elm)
381 if (elm->base.btype != HAMMER_BTREE_TYPE_RECORD)
383 if ((hist->head.flags & HAMMER_IOC_HISTORY_ATKEY) &&
384 ip->ino_data.obj_type == HAMMER_OBJTYPE_REGFILE) {
388 if (hist->nxt_key > elm->leaf.base.key - elm->leaf.data_len &&
389 hist->key < elm->leaf.base.key - elm->leaf.data_len) {
390 hist->nxt_key = elm->leaf.base.key - elm->leaf.data_len;
392 if (hist->nxt_key > elm->leaf.base.key)
393 hist->nxt_key = elm->leaf.base.key;
396 * Record is beyond MAXPHYS, there won't be any more records
397 * in the iteration covering the requested offset (key).
399 if (elm->leaf.base.key >= MAXPHYS &&
400 elm->leaf.base.key - MAXPHYS > hist->key) {
401 hist->head.flags |= HAMMER_IOC_HISTORY_NEXT_KEY;
405 * Data-range of record does not cover the key.
407 if (elm->leaf.base.key - elm->leaf.data_len > hist->key)
410 } else if (hist->head.flags & HAMMER_IOC_HISTORY_ATKEY) {
414 if (hist->nxt_key > elm->leaf.base.key &&
415 hist->key < elm->leaf.base.key) {
416 hist->nxt_key = elm->leaf.base.key;
420 * Record is beyond the requested key.
422 if (elm->leaf.base.key > hist->key)
423 hist->head.flags |= HAMMER_IOC_HISTORY_NEXT_KEY;
427 * Add create_tid if it is in-bounds.
431 elm->leaf.base.create_tid != hist->hist_ary[i - 1].tid) &&
432 elm->leaf.base.create_tid >= hist->beg_tid &&
433 elm->leaf.base.create_tid < hist->end_tid) {
434 if (hist->count == HAMMER_MAX_HISTORY_ELMS) {
435 hist->nxt_tid = elm->leaf.base.create_tid;
436 hist->head.flags |= HAMMER_IOC_HISTORY_NEXT_TID;
439 hist->hist_ary[i].tid = elm->leaf.base.create_tid;
440 hist->hist_ary[i].time32 = elm->leaf.create_ts;
445 * Add delete_tid if it is in-bounds. Note that different portions
446 * of the history may have overlapping data ranges with different
447 * delete_tid's. If this case occurs the delete_tid may match the
448 * create_tid of a following record. XXX
454 if (elm->leaf.base.delete_tid &&
455 elm->leaf.base.delete_tid >= hist->beg_tid &&
456 elm->leaf.base.delete_tid < hist->end_tid) {
457 if (i == HAMMER_MAX_HISTORY_ELMS) {
458 hist->nxt_tid = elm->leaf.base.delete_tid;
459 hist->head.flags |= HAMMER_IOC_HISTORY_NEXT_TID;
462 hist->hist_ary[i].tid = elm->leaf.base.delete_tid;
463 hist->hist_ary[i].time32 = elm->leaf.delete_ts;
469 * Acquire synchronization TID
473 hammer_ioc_synctid(hammer_transaction_t trans, hammer_inode_t ip,
474 struct hammer_ioc_synctid *std)
476 hammer_mount_t hmp = ip->hmp;
480 case HAMMER_SYNCTID_NONE:
481 std->tid = hmp->flusher.tid; /* inaccurate */
483 case HAMMER_SYNCTID_ASYNC:
484 hammer_queue_inodes_flusher(hmp, MNT_NOWAIT);
485 hammer_flusher_async(hmp, NULL);
486 std->tid = hmp->flusher.tid; /* inaccurate */
488 case HAMMER_SYNCTID_SYNC1:
489 hammer_queue_inodes_flusher(hmp, MNT_WAIT);
490 hammer_flusher_sync(hmp);
491 std->tid = hmp->flusher.tid;
493 case HAMMER_SYNCTID_SYNC2:
494 hammer_queue_inodes_flusher(hmp, MNT_WAIT);
495 hammer_flusher_sync(hmp);
496 std->tid = hmp->flusher.tid;
497 hammer_flusher_sync(hmp);
507 * Retrieve version info.
509 * Load min_version, wip_version, and max_versino. If cur_version is passed
510 * as 0 then load the current version into cur_version. Load the description
511 * for cur_version into the description array.
513 * Returns 0 on success, EINVAL if cur_version is non-zero and set to an
518 hammer_ioc_get_version(hammer_transaction_t trans, hammer_inode_t ip,
519 struct hammer_ioc_version *ver)
523 ver->min_version = HAMMER_VOL_VERSION_MIN;
524 ver->wip_version = HAMMER_VOL_VERSION_WIP;
525 ver->max_version = HAMMER_VOL_VERSION_MAX;
526 if (ver->cur_version == 0)
527 ver->cur_version = trans->hmp->version;
528 switch(ver->cur_version) {
530 ksnprintf(ver->description, sizeof(ver->description),
531 "First HAMMER release (DragonFly 2.0+)");
534 ksnprintf(ver->description, sizeof(ver->description),
535 "New directory entry layout (DragonFly 2.3+)");
538 ksnprintf(ver->description, sizeof(ver->description),
539 "New snapshot management (DragonFly 2.5+)");
542 ksnprintf(ver->description, sizeof(ver->description),
543 "New undo/flush, faster flush/sync (DragonFly 2.5+)");
546 ksnprintf(ver->description, sizeof(ver->description),
547 "Adjustments for dedup support (DragonFly 2.9+)");
550 ksnprintf(ver->description, sizeof(ver->description),
563 hammer_ioc_set_version(hammer_transaction_t trans, hammer_inode_t ip,
564 struct hammer_ioc_version *ver)
566 hammer_mount_t hmp = trans->hmp;
567 struct hammer_cursor cursor;
568 hammer_volume_t volume;
570 int over = hmp->version;
573 * Generally do not allow downgrades. However, version 4 can
574 * be downgraded to version 3.
576 if (ver->cur_version < hmp->version) {
577 if (!(ver->cur_version == 3 && hmp->version == 4))
580 if (ver->cur_version == hmp->version)
582 if (ver->cur_version > HAMMER_VOL_VERSION_MAX)
588 * Update the root volume header and the version cached in
589 * the hammer_mount structure.
591 error = hammer_init_cursor(trans, &cursor, NULL, NULL);
594 hammer_lock_ex(&hmp->flusher.finalize_lock);
595 hammer_sync_lock_ex(trans);
596 hmp->version = ver->cur_version;
599 * If upgrading from version < 4 to version >= 4 the UNDO FIFO
600 * must be reinitialized.
602 if (over < HAMMER_VOL_VERSION_FOUR &&
603 ver->cur_version >= HAMMER_VOL_VERSION_FOUR) {
604 kprintf("upgrade undo to version 4\n");
605 error = hammer_upgrade_undo_4(trans);
611 * Adjust the version in the volume header
613 volume = hammer_get_root_volume(hmp, &error);
614 KKASSERT(error == 0);
615 hammer_modify_volume_field(cursor.trans, volume, vol_version);
616 volume->ondisk->vol_version = ver->cur_version;
617 hammer_modify_volume_done(volume);
618 hammer_rel_volume(volume, 0);
620 hammer_sync_unlock(trans);
621 hammer_unlock(&hmp->flusher.finalize_lock);
623 ver->head.error = error;
624 hammer_done_cursor(&cursor);
633 hammer_ioc_get_info(hammer_transaction_t trans, struct hammer_ioc_info *info) {
635 struct hammer_volume_ondisk *od = trans->hmp->rootvol->ondisk;
636 struct hammer_mount *hm = trans->hmp;
638 /* Fill the structure with the necessary information */
639 _hammer_checkspace(hm, HAMMER_CHKSPC_WRITE, &info->rsvbigblocks);
640 info->rsvbigblocks = info->rsvbigblocks >> HAMMER_LARGEBLOCK_BITS;
641 strlcpy(info->vol_name, od->vol_name, sizeof(od->vol_name));
643 info->vol_fsid = hm->fsid;
644 info->vol_fstype = od->vol_fstype;
645 info->version = hm->version;
647 info->inodes = od->vol0_stat_inodes;
648 info->bigblocks = od->vol0_stat_bigblocks;
649 info->freebigblocks = od->vol0_stat_freebigblocks;
650 info->nvolumes = hm->nvolumes;
656 * Add a snapshot transction id(s) to the list of snapshots.
658 * NOTE: Records are created with an allocated TID. If a flush cycle
659 * is in progress the record may be synced in the current flush
660 * cycle and the volume header will reflect the allocation of the
661 * TID, but the synchronization point may not catch up to the
662 * TID until the next flush cycle.
666 hammer_ioc_add_snapshot(hammer_transaction_t trans, hammer_inode_t ip,
667 struct hammer_ioc_snapshot *snap)
669 hammer_mount_t hmp = ip->hmp;
670 struct hammer_btree_leaf_elm leaf;
671 struct hammer_cursor cursor;
677 if (snap->count > HAMMER_SNAPS_PER_IOCTL)
679 if (snap->index > snap->count)
682 hammer_lock_ex(&hmp->snapshot_lock);
685 * Look for keys starting after the previous iteration, or at
686 * the beginning if snap->count is 0.
688 error = hammer_init_cursor(trans, &cursor, &ip->cache[0], NULL);
690 hammer_done_cursor(&cursor);
694 cursor.asof = HAMMER_MAX_TID;
695 cursor.flags |= HAMMER_CURSOR_BACKEND | HAMMER_CURSOR_ASOF;
697 bzero(&leaf, sizeof(leaf));
698 leaf.base.obj_id = HAMMER_OBJID_ROOT;
699 leaf.base.rec_type = HAMMER_RECTYPE_SNAPSHOT;
700 leaf.base.create_tid = hammer_alloc_tid(hmp, 1);
701 leaf.base.btype = HAMMER_BTREE_TYPE_RECORD;
702 leaf.base.localization = ip->obj_localization + HAMMER_LOCALIZE_INODE;
703 leaf.data_len = sizeof(struct hammer_snapshot_data);
705 while (snap->index < snap->count) {
706 leaf.base.key = (int64_t)snap->snaps[snap->index].tid;
707 cursor.key_beg = leaf.base;
708 error = hammer_btree_lookup(&cursor);
715 * NOTE: Must reload key_beg after an ASOF search because
716 * the create_tid may have been modified during the
719 cursor.flags &= ~HAMMER_CURSOR_ASOF;
720 cursor.key_beg = leaf.base;
721 error = hammer_create_at_cursor(&cursor, &leaf,
722 &snap->snaps[snap->index],
723 HAMMER_CREATE_MODE_SYS);
724 if (error == EDEADLK) {
725 hammer_done_cursor(&cursor);
728 cursor.flags |= HAMMER_CURSOR_ASOF;
733 snap->head.error = error;
734 hammer_done_cursor(&cursor);
735 hammer_unlock(&hmp->snapshot_lock);
740 * Delete snapshot transaction id(s) from the list of snapshots.
744 hammer_ioc_del_snapshot(hammer_transaction_t trans, hammer_inode_t ip,
745 struct hammer_ioc_snapshot *snap)
747 hammer_mount_t hmp = ip->hmp;
748 struct hammer_cursor cursor;
754 if (snap->count > HAMMER_SNAPS_PER_IOCTL)
756 if (snap->index > snap->count)
759 hammer_lock_ex(&hmp->snapshot_lock);
762 * Look for keys starting after the previous iteration, or at
763 * the beginning if snap->count is 0.
765 error = hammer_init_cursor(trans, &cursor, &ip->cache[0], NULL);
767 hammer_done_cursor(&cursor);
771 cursor.key_beg.obj_id = HAMMER_OBJID_ROOT;
772 cursor.key_beg.create_tid = 0;
773 cursor.key_beg.delete_tid = 0;
774 cursor.key_beg.obj_type = 0;
775 cursor.key_beg.rec_type = HAMMER_RECTYPE_SNAPSHOT;
776 cursor.key_beg.localization = ip->obj_localization + HAMMER_LOCALIZE_INODE;
777 cursor.asof = HAMMER_MAX_TID;
778 cursor.flags |= HAMMER_CURSOR_ASOF;
780 while (snap->index < snap->count) {
781 cursor.key_beg.key = (int64_t)snap->snaps[snap->index].tid;
782 error = hammer_btree_lookup(&cursor);
785 error = hammer_btree_extract(&cursor, HAMMER_CURSOR_GET_LEAF);
788 error = hammer_delete_at_cursor(&cursor, HAMMER_DELETE_DESTROY,
790 if (error == EDEADLK) {
791 hammer_done_cursor(&cursor);
798 snap->head.error = error;
799 hammer_done_cursor(&cursor);
800 hammer_unlock(&hmp->snapshot_lock);
805 * Retrieve as many snapshot ids as possible or until the array is
806 * full, starting after the last transction id passed in. If count
807 * is 0 we retrieve starting at the beginning.
809 * NOTE: Because the b-tree key field is signed but transaction ids
810 * are unsigned the returned list will be signed-sorted instead
811 * of unsigned sorted. The Caller must still sort the aggregate
816 hammer_ioc_get_snapshot(hammer_transaction_t trans, hammer_inode_t ip,
817 struct hammer_ioc_snapshot *snap)
819 struct hammer_cursor cursor;
825 if (snap->index != 0)
827 if (snap->count > HAMMER_SNAPS_PER_IOCTL)
831 * Look for keys starting after the previous iteration, or at
832 * the beginning if snap->count is 0.
834 error = hammer_init_cursor(trans, &cursor, &ip->cache[0], NULL);
836 hammer_done_cursor(&cursor);
840 cursor.key_beg.obj_id = HAMMER_OBJID_ROOT;
841 cursor.key_beg.create_tid = 0;
842 cursor.key_beg.delete_tid = 0;
843 cursor.key_beg.obj_type = 0;
844 cursor.key_beg.rec_type = HAMMER_RECTYPE_SNAPSHOT;
845 cursor.key_beg.localization = ip->obj_localization + HAMMER_LOCALIZE_INODE;
846 if (snap->count == 0)
847 cursor.key_beg.key = HAMMER_MIN_KEY;
849 cursor.key_beg.key = (int64_t)snap->snaps[snap->count - 1].tid + 1;
851 cursor.key_end = cursor.key_beg;
852 cursor.key_end.key = HAMMER_MAX_KEY;
853 cursor.asof = HAMMER_MAX_TID;
854 cursor.flags |= HAMMER_CURSOR_END_EXCLUSIVE | HAMMER_CURSOR_ASOF;
858 error = hammer_btree_first(&cursor);
859 while (error == 0 && snap->count < HAMMER_SNAPS_PER_IOCTL) {
860 error = hammer_btree_extract(&cursor, HAMMER_CURSOR_GET_LEAF);
863 if (cursor.leaf->base.rec_type == HAMMER_RECTYPE_SNAPSHOT) {
864 error = hammer_btree_extract(
865 &cursor, HAMMER_CURSOR_GET_LEAF |
866 HAMMER_CURSOR_GET_DATA);
867 snap->snaps[snap->count] = cursor.data->snap;
870 * The snap data tid should match the key but might
871 * not due to a bug in the HAMMER v3 conversion code.
873 * This error will work itself out over time but we
874 * have to force a match or the snapshot will not
877 if (cursor.data->snap.tid !=
878 (hammer_tid_t)cursor.leaf->base.key) {
879 kprintf("HAMMER: lo=%08x snapshot key "
880 "0x%016jx data mismatch 0x%016jx\n",
881 cursor.key_beg.localization,
882 (uintmax_t)cursor.data->snap.tid,
883 cursor.leaf->base.key);
884 kprintf("HAMMER: Probably left over from the "
885 "original v3 conversion, hammer "
886 "cleanup should get it eventually\n");
887 snap->snaps[snap->count].tid =
888 cursor.leaf->base.key;
892 error = hammer_btree_iterate(&cursor);
895 if (error == ENOENT) {
896 snap->head.flags |= HAMMER_IOC_SNAPSHOT_EOF;
899 snap->head.error = error;
900 hammer_done_cursor(&cursor);
905 * Retrieve the PFS hammer cleanup utility config record. This is
906 * different (newer than) the PFS config.
910 hammer_ioc_get_config(hammer_transaction_t trans, hammer_inode_t ip,
911 struct hammer_ioc_config *config)
913 struct hammer_cursor cursor;
916 error = hammer_init_cursor(trans, &cursor, &ip->cache[0], NULL);
918 hammer_done_cursor(&cursor);
922 cursor.key_beg.obj_id = HAMMER_OBJID_ROOT;
923 cursor.key_beg.create_tid = 0;
924 cursor.key_beg.delete_tid = 0;
925 cursor.key_beg.obj_type = 0;
926 cursor.key_beg.rec_type = HAMMER_RECTYPE_CONFIG;
927 cursor.key_beg.localization = ip->obj_localization + HAMMER_LOCALIZE_INODE;
928 cursor.key_beg.key = 0; /* config space page 0 */
930 cursor.asof = HAMMER_MAX_TID;
931 cursor.flags |= HAMMER_CURSOR_ASOF;
933 error = hammer_btree_lookup(&cursor);
935 error = hammer_btree_extract(&cursor, HAMMER_CURSOR_GET_LEAF |
936 HAMMER_CURSOR_GET_DATA);
938 config->config = cursor.data->config;
940 /* error can be ENOENT */
941 config->head.error = error;
942 hammer_done_cursor(&cursor);
947 * Retrieve the PFS hammer cleanup utility config record. This is
948 * different (newer than) the PFS config.
950 * This is kinda a hack.
954 hammer_ioc_set_config(hammer_transaction_t trans, hammer_inode_t ip,
955 struct hammer_ioc_config *config)
957 struct hammer_btree_leaf_elm leaf;
958 struct hammer_cursor cursor;
959 hammer_mount_t hmp = ip->hmp;
963 error = hammer_init_cursor(trans, &cursor, &ip->cache[0], NULL);
965 hammer_done_cursor(&cursor);
969 bzero(&leaf, sizeof(leaf));
970 leaf.base.obj_id = HAMMER_OBJID_ROOT;
971 leaf.base.rec_type = HAMMER_RECTYPE_CONFIG;
972 leaf.base.create_tid = hammer_alloc_tid(hmp, 1);
973 leaf.base.btype = HAMMER_BTREE_TYPE_RECORD;
974 leaf.base.localization = ip->obj_localization + HAMMER_LOCALIZE_INODE;
975 leaf.base.key = 0; /* page 0 */
976 leaf.data_len = sizeof(struct hammer_config_data);
978 cursor.key_beg = leaf.base;
980 cursor.asof = HAMMER_MAX_TID;
981 cursor.flags |= HAMMER_CURSOR_BACKEND | HAMMER_CURSOR_ASOF;
983 error = hammer_btree_lookup(&cursor);
985 error = hammer_btree_extract(&cursor, HAMMER_CURSOR_GET_LEAF |
986 HAMMER_CURSOR_GET_DATA);
987 error = hammer_delete_at_cursor(&cursor, HAMMER_DELETE_DESTROY,
989 if (error == EDEADLK) {
990 hammer_done_cursor(&cursor);
998 * NOTE: Must reload key_beg after an ASOF search because
999 * the create_tid may have been modified during the
1002 cursor.flags &= ~HAMMER_CURSOR_ASOF;
1003 cursor.key_beg = leaf.base;
1004 error = hammer_create_at_cursor(&cursor, &leaf,
1006 HAMMER_CREATE_MODE_SYS);
1007 if (error == EDEADLK) {
1008 hammer_done_cursor(&cursor);
1012 config->head.error = error;
1013 hammer_done_cursor(&cursor);
1019 hammer_ioc_get_data(hammer_transaction_t trans, hammer_inode_t ip,
1020 struct hammer_ioc_data *data)
1022 struct hammer_cursor cursor;
1026 /* XXX cached inode ? */
1027 error = hammer_init_cursor(trans, &cursor, NULL, NULL);
1031 cursor.key_beg = data->elm;
1032 cursor.flags |= HAMMER_CURSOR_BACKEND;
1034 error = hammer_btree_lookup(&cursor);
1036 error = hammer_btree_extract(&cursor, HAMMER_CURSOR_GET_LEAF |
1037 HAMMER_CURSOR_GET_DATA);
1039 data->leaf = *cursor.leaf;
1040 bytes = cursor.leaf->data_len;
1041 if (bytes > data->size)
1043 error = copyout(cursor.data, data->ubuf, bytes);
1048 hammer_done_cursor(&cursor);