Files
mirror_zfs/include/sys/dmu_objset.h
T

281 lines
9.5 KiB
C
Raw Normal View History

2025-01-04 11:04:27 +11:00
// SPDX-License-Identifier: CDDL-1.0
2008-11-20 12:01:55 -08:00
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2022-07-11 23:16:13 +02:00
* or https://opensource.org/licenses/CDDL-1.0.
2008-11-20 12:01:55 -08:00
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2018-09-05 19:33:36 -06:00
* Copyright (c) 2012, 2018 by Delphix. All rights reserved.
2013-08-01 13:02:10 -07:00
* Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
* Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
2008-11-20 12:01:55 -08:00
*/
/* Portions Copyright 2010 Robert Milkowski */
2008-11-20 12:01:55 -08:00
#ifndef _SYS_DMU_OBJSET_H
#define _SYS_DMU_OBJSET_H
#include <sys/spa.h>
#include <sys/arc.h>
#include <sys/txg.h>
#include <sys/zfs_context.h>
#include <sys/dnode.h>
#include <sys/zio.h>
#include <sys/zil.h>
#include <sys/sa.h>
#include <sys/zfs_ioctl.h>
2008-11-20 12:01:55 -08:00
#ifdef __cplusplus
extern "C" {
#endif
2010-08-26 14:24:34 -07:00
extern krwlock_t os_lock;
2013-09-04 07:00:57 -05:00
struct dsl_pool;
2008-11-20 12:01:55 -08:00
struct dsl_dataset;
struct dmu_tx;
2018-02-14 06:54:54 +08:00
#define OBJSET_PHYS_SIZE_V1 1024
#define OBJSET_PHYS_SIZE_V2 2048
#define OBJSET_PHYS_SIZE_V3 4096
2009-07-02 15:44:48 -07:00
#define OBJSET_BUF_HAS_USERUSED(buf) \
2018-02-14 06:54:54 +08:00
(arc_buf_size(buf) >= OBJSET_PHYS_SIZE_V2)
#define OBJSET_BUF_HAS_PROJECTUSED(buf) \
(arc_buf_size(buf) >= OBJSET_PHYS_SIZE_V3)
2018-02-14 06:54:54 +08:00
#define OBJSET_FLAG_USERACCOUNTING_COMPLETE (1ULL << 0)
#define OBJSET_FLAG_USEROBJACCOUNTING_COMPLETE (1ULL << 1)
#define OBJSET_FLAG_PROJECTQUOTA_COMPLETE (1ULL << 2)
2009-07-02 15:44:48 -07:00
/*
* This mask defines the set of flags which are "portable", meaning
* that they can be preserved when doing a raw encrypted zfs send.
* Flags included in this mask will be protected by os_portable_mac
* when the block of dnodes is encrypted. No portable flags currently
* exist.
*/
2017-08-14 13:36:48 -04:00
#define OBJSET_CRYPT_PORTABLE_FLAGS_MASK (0)
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgnu-variable-sized-type-not-at-end"
#endif
2008-11-20 12:01:55 -08:00
typedef struct objset_phys {
dnode_phys_t os_meta_dnode;
zil_header_t os_zil_header;
uint64_t os_type;
2009-07-02 15:44:48 -07:00
uint64_t os_flags;
2017-08-14 13:36:48 -04:00
uint8_t os_portable_mac[ZIO_OBJSET_MAC_LEN];
uint8_t os_local_mac[ZIO_OBJSET_MAC_LEN];
2018-02-14 06:54:54 +08:00
char os_pad0[OBJSET_PHYS_SIZE_V2 - sizeof (dnode_phys_t)*3 -
2017-08-14 13:36:48 -04:00
sizeof (zil_header_t) - sizeof (uint64_t)*2 -
2*ZIO_OBJSET_MAC_LEN];
2009-07-02 15:44:48 -07:00
dnode_phys_t os_userused_dnode;
dnode_phys_t os_groupused_dnode;
2018-02-14 06:54:54 +08:00
dnode_phys_t os_projectused_dnode;
char os_pad1[OBJSET_PHYS_SIZE_V3 - OBJSET_PHYS_SIZE_V2 -
sizeof (dnode_phys_t)];
2008-11-20 12:01:55 -08:00
} objset_phys_t;
#if defined(__clang__)
#pragma clang diagnostic pop
#endif
2008-11-20 12:01:55 -08:00
typedef int (*dmu_objset_upgrade_cb_t)(objset_t *);
#define OBJSET_PROP_UNINITIALIZED ((uint64_t)-1)
2008-11-20 12:01:55 -08:00
struct objset {
/* Immutable: */
struct dsl_dataset *os_dsl_dataset;
spa_t *os_spa;
arc_buf_t *os_phys_buf;
objset_phys_t *os_phys;
2017-08-14 13:36:48 -04:00
boolean_t os_encrypted;
2010-08-26 14:24:34 -07:00
/*
* The following "special" dnodes have no parent, are exempt
* from dnode_move(), and are not recorded in os_dnodes, but they
* root their descendents in this objset using handles anyway, so
* that all access to dnodes from dbufs consistently uses handles.
2010-08-26 14:24:34 -07:00
*/
dnode_handle_t os_meta_dnode;
dnode_handle_t os_userused_dnode;
dnode_handle_t os_groupused_dnode;
2018-02-14 06:54:54 +08:00
dnode_handle_t os_projectused_dnode;
2008-11-20 12:01:55 -08:00
zilog_t *os_zil;
list_node_t os_evicting_node;
/* can change, under dsl_dir's locks: */
2016-03-16 18:25:34 -07:00
uint64_t os_dnodesize; /* default dnode size for new objects */
enum zio_checksum os_checksum;
enum zio_compress os_compress;
2020-08-18 19:10:17 +02:00
uint8_t os_complevel;
uint8_t os_copies;
enum zio_checksum os_dedup_checksum;
boolean_t os_dedup_verify;
zfs_logbias_op_t os_logbias;
zfs_cache_type_t os_primary_cache;
zfs_cache_type_t os_secondary_cache;
2023-10-24 11:00:07 -07:00
zfs_prefetch_type_t os_prefetch;
zfs_sync_type_t os_sync;
2024-09-14 16:47:59 -04:00
zfs_direct_t os_direct;
zfs_redundant_metadata_type_t os_redundant_metadata;
2019-07-26 10:54:14 -07:00
uint64_t os_recordsize;
/*
* The next four values are used as a cache of whatever's on disk, and
* are initialized the first time these properties are queried. Before
* being initialized with their real values, their values are
* OBJSET_PROP_UNINITIALIZED.
*/
uint64_t os_version;
uint64_t os_normalization;
uint64_t os_utf8only;
uint64_t os_casesensitivity;
2018-09-05 19:33:36 -06:00
/*
* The largest zpl file block allowed in special class.
* cached here instead of zfsvfs for easier access.
*/
2025-07-02 14:11:37 -04:00
uint64_t os_zpl_special_smallblock;
2008-11-20 12:01:55 -08:00
/*
* Pointer is constant; the blkptr it points to is protected by
* os_dsl_dataset->ds_bp_rwlock
*/
blkptr_t *os_rootbp;
2008-11-20 12:01:55 -08:00
/* no lock needed: */
struct dmu_tx *os_synctx; /* XXX sketchy */
zil_header_t os_zil_header;
2021-06-10 12:42:31 -04:00
multilist_t os_synced_dnodes;
2009-07-02 15:44:48 -07:00
uint64_t os_flags;
2016-05-17 01:02:29 +00:00
uint64_t os_freed_dnodes;
boolean_t os_rescan_dnodes;
boolean_t os_raw_receive;
2008-11-20 12:01:55 -08:00
2017-08-14 13:36:48 -04:00
/* os_phys_buf should be written raw next txg */
boolean_t os_next_write_raw[TXG_SIZE];
2017-08-14 13:36:48 -04:00
2008-11-20 12:01:55 -08:00
/* Protected by os_obj_lock */
kmutex_t os_obj_lock;
uint64_t os_obj_next_chunk;
/* Per-CPU next object to allocate, protected by atomic ops. */
uint64_t *os_obj_next_percpu;
int os_obj_next_percpu_len;
2008-11-20 12:01:55 -08:00
/* Protected by os_lock */
kmutex_t os_lock;
2021-06-10 12:42:31 -04:00
multilist_t os_dirty_dnodes[TXG_SIZE];
2008-11-20 12:01:55 -08:00
list_t os_dnodes;
list_t os_downgraded_dbufs;
2018-02-14 06:54:54 +08:00
/* Protects changes to DMU_{USER,GROUP,PROJECT}USED_OBJECT */
2017-03-20 18:36:00 -07:00
kmutex_t os_userused_lock;
2008-11-20 12:01:55 -08:00
/* stuff we store for the user */
kmutex_t os_user_ptr_lock;
void *os_user_ptr;
sa_os_t *os_sa;
/* kernel thread to upgrade this dataset */
kmutex_t os_upgrade_lock;
taskqid_t os_upgrade_id;
dmu_objset_upgrade_cb_t os_upgrade_cb;
boolean_t os_upgrade_exit;
int os_upgrade_status;
};
#define DMU_META_OBJSET 0
2008-11-20 12:01:55 -08:00
#define DMU_META_DNODE_OBJECT 0
2009-07-02 15:44:48 -07:00
#define DMU_OBJECT_IS_SPECIAL(obj) ((int64_t)(obj) <= 0)
2010-08-26 14:24:34 -07:00
#define DMU_META_DNODE(os) ((os)->os_meta_dnode.dnh_dnode)
#define DMU_USERUSED_DNODE(os) ((os)->os_userused_dnode.dnh_dnode)
#define DMU_GROUPUSED_DNODE(os) ((os)->os_groupused_dnode.dnh_dnode)
2018-02-14 06:54:54 +08:00
#define DMU_PROJECTUSED_DNODE(os) ((os)->os_projectused_dnode.dnh_dnode)
2008-11-20 12:01:55 -08:00
/* called from zpl */
2022-04-19 20:38:30 +02:00
int dmu_objset_hold(const char *name, const void *tag, objset_t **osp);
int dmu_objset_hold_flags(const char *name, boolean_t decrypt, const void *tag,
2017-08-14 13:36:48 -04:00
objset_t **osp);
int dmu_objset_own(const char *name, dmu_objset_type_t type,
2022-04-19 20:38:30 +02:00
boolean_t readonly, boolean_t decrypt, const void *tag, objset_t **osp);
2015-05-06 09:07:55 -07:00
int dmu_objset_own_obj(struct dsl_pool *dp, uint64_t obj,
2017-08-14 13:36:48 -04:00
dmu_objset_type_t type, boolean_t readonly, boolean_t decrypt,
2022-04-19 20:38:30 +02:00
const void *tag, objset_t **osp);
void dmu_objset_refresh_ownership(struct dsl_dataset *ds,
2022-04-19 20:38:30 +02:00
struct dsl_dataset **newds, boolean_t decrypt, const void *tag);
void dmu_objset_rele(objset_t *os, const void *tag);
void dmu_objset_rele_flags(objset_t *os, boolean_t decrypt, const void *tag);
void dmu_objset_disown(objset_t *os, boolean_t decrypt, const void *tag);
int dmu_objset_from_ds(struct dsl_dataset *ds, objset_t **osp);
2008-11-20 12:01:55 -08:00
void dmu_objset_stats(objset_t *os, nvlist_t *nv);
void dmu_objset_fast_stat(objset_t *os, dmu_objset_stats_t *stat);
void dmu_objset_space(objset_t *os, uint64_t *refdbytesp, uint64_t *availbytesp,
uint64_t *usedobjsp, uint64_t *availobjsp);
uint64_t dmu_objset_fsid_guid(objset_t *os);
2013-09-04 07:00:57 -05:00
int dmu_objset_find_dp(struct dsl_pool *dp, uint64_t ddobj,
int func(struct dsl_pool *, struct dsl_dataset *, void *),
void *arg, int flags);
void dmu_objset_evict_dbufs(objset_t *os);
inode_timespec_t dmu_objset_snap_cmtime(objset_t *os);
boolean_t dmu_objset_block_is_shared(objset_t *os, const blkptr_t *bp);
2008-11-20 12:01:55 -08:00
/* called from dsl */
void dmu_objset_sync(objset_t *os, zio_t *zio, dmu_tx_t *tx);
boolean_t dmu_objset_is_dirty(objset_t *os, uint64_t txg);
2017-08-14 13:36:48 -04:00
objset_t *dmu_objset_create_impl_dnstats(spa_t *spa, struct dsl_dataset *ds,
blkptr_t *bp, dmu_objset_type_t type, int levels, int blksz, int ibs,
dmu_tx_t *tx);
objset_t *dmu_objset_create_impl(spa_t *spa, struct dsl_dataset *ds,
2008-11-20 12:01:55 -08:00
blkptr_t *bp, dmu_objset_type_t type, dmu_tx_t *tx);
int dmu_objset_open_impl(spa_t *spa, struct dsl_dataset *ds, blkptr_t *bp,
objset_t **osp);
void dmu_objset_evict(objset_t *os);
void dmu_objset_sync_done(objset_t *os, dmu_tx_t *tx);
void dmu_objset_userquota_get_ids(dnode_t *dn, boolean_t before, dmu_tx_t *tx);
boolean_t dmu_objset_userused_enabled(objset_t *os);
void dmu_objset_userspace_upgrade(objset_t *os);
2009-07-02 15:44:48 -07:00
boolean_t dmu_objset_userspace_present(objset_t *os);
boolean_t dmu_objset_userobjused_enabled(objset_t *os);
boolean_t dmu_objset_userobjspace_upgradable(objset_t *os);
boolean_t dmu_objset_userobjspace_present(objset_t *os);
boolean_t dmu_objset_incompatible_encryption_version(objset_t *os);
2018-02-14 06:54:54 +08:00
boolean_t dmu_objset_projectquota_enabled(objset_t *os);
boolean_t dmu_objset_projectquota_present(objset_t *os);
boolean_t dmu_objset_projectquota_upgradable(objset_t *os);
void dmu_objset_id_quota_upgrade(objset_t *os);
int dmu_get_file_info(objset_t *os, dmu_object_type_t bonustype,
const void *data, zfs_file_info_t *zfi);
2013-09-04 07:00:57 -05:00
int dmu_fsname(const char *snapname, char *buf);
2008-11-20 12:01:55 -08:00
void dmu_objset_evict_done(objset_t *os);
void dmu_objset_willuse_space(objset_t *os, int64_t space, dmu_tx_t *tx);
2010-08-26 14:24:34 -07:00
void dmu_objset_init(void);
void dmu_objset_fini(void);
2008-11-20 12:01:55 -08:00
#ifdef __cplusplus
}
#endif
#endif /* _SYS_DMU_OBJSET_H */