1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
10 /* CONFIG_XFS_* must be defined to 1 to work with IS_ENABLED() */
12 /* For userspace XFS_RT is always defined */
13 #define CONFIG_XFS_RT 1
14 /* Ditto in-memory btrees */
15 #define CONFIG_XFS_BTREE_IN_MEM 1
17 #include "libxfs_api_defs.h"
18 #include "platform_defs.h"
26 #include "libfrog/radix-tree.h"
27 #include "libfrog/bitmask.h"
28 #include "libfrog/div64.h"
32 #include "xfs_types.h"
36 #include "xfs_shared.h"
37 #include "xfs_format.h"
38 #include "xfs_log_format.h"
39 #include "xfs_quota_defs.h"
40 #include "xfs_trans_resv.h"
43 /* CRC stuff, buffer API dependent on it */
44 extern uint32_t crc32c_le(uint32_t crc
, unsigned char const *p
, size_t len
);
45 #define crc32c(c,p,l) crc32c_le((c),(unsigned char const *)(p),(l))
47 /* fake up kernel's iomap, (not) used in xfs_bmap.[ch] */
49 #include "xfs_cksum.h"
51 #define __round_mask(x, y) ((__typeof__(x))((y)-1))
52 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
53 #define unlikely(x) (x)
57 * This mirrors the kernel include for xfs_buf.h - it's implicitly included in
58 * every files via a similar include in the kernel xfs_linux.h.
60 #include "libxfs_io.h"
64 #include "xfs_mount.h"
65 #include "xfs_defer.h"
66 #include "xfs_errortag.h"
67 #include "xfs_da_format.h"
68 #include "xfs_da_btree.h"
69 #include "xfs_inode.h"
71 #include "xfs_dir2_priv.h"
72 #include "xfs_bmap_btree.h"
73 #include "xfs_alloc_btree.h"
74 #include "xfs_ialloc_btree.h"
76 #include "xfs_attr_sf.h"
77 #include "xfs_inode_fork.h"
78 #include "xfs_inode_buf.h"
79 #include "xfs_inode_util.h"
80 #include "xfs_alloc.h"
81 #include "xfs_btree.h"
83 #include "xfs_trace.h"
84 #include "xfs_trans.h"
86 #include "xfs_rmap_btree.h"
88 #include "xfs_refcount_btree.h"
89 #include "xfs_rtrefcount_btree.h"
90 #include "xfs_refcount.h"
91 #include "xfs_btree_staging.h"
92 #include "xfs_rtbitmap.h"
93 #include "xfs_symlink_remote.h"
94 #include "libxfs/xfile.h"
95 #include "libxfs/buf_mem.h"
96 #include "xfs_btree_mem.h"
97 #include "xfs_parent.h"
98 #include "xfs_ag_resv.h"
99 #include "xfs_metafile.h"
100 #include "xfs_metadir.h"
101 #include "xfs_rtgroup.h"
102 #include "xfs_rtbitmap.h"
103 #include "xfs_rtrmap_btree.h"
104 #include "xfs_ag_resv.h"
107 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
110 #ifndef XFS_SUPER_MAGIC
111 #define XFS_SUPER_MAGIC 0x58465342
114 #define xfs_isset(a,i) ((a)[(i)/(sizeof(*(a))*NBBY)] & (1ULL<<((i)%(sizeof(*(a))*NBBY))))
117 /* input parameters */
118 char *name
; /* pathname of the device */
119 bool isfile
; /* is the device a file? */
120 bool create
; /* create file if it doesn't exist */
122 /* output parameters */
123 dev_t dev
; /* device name for the device */
124 long long size
; /* size of subvolume (BBs) */
125 int bsize
; /* device blksize */
126 int fd
; /* file descriptor */
130 * Argument structure for libxfs_init().
133 struct libxfs_dev data
;
134 struct libxfs_dev log
;
135 struct libxfs_dev rt
;
137 /* input parameters */
138 unsigned flags
; /* LIBXFS_* flags below */
139 int bcache_flags
; /* cache init flags */
140 int setblksize
; /* value to set device blksizes to */
143 /* disallow all mounted filesystems: */
144 #define LIBXFS_ISREADONLY (1U << 0)
146 /* allow mounted only if mounted ro: */
147 #define LIBXFS_ISINACTIVE (1U << 1)
149 /* repairing a device mounted ro: */
150 #define LIBXFS_DANGEROUSLY (1U << 2)
152 /* disallow other accesses (O_EXCL): */
153 #define LIBXFS_EXCLUSIVELY (1U << 3)
155 /* can use direct I/O, not buffered: */
156 #define LIBXFS_DIRECT (1U << 4)
158 /* lock xfs_buf's - for MT usage */
159 #define LIBXFS_USEBUFLOCK (1U << 5)
161 extern char *progname
;
162 extern xfs_lsn_t libxfs_max_lsn
;
164 int libxfs_init(struct libxfs_init
*);
165 void libxfs_destroy(struct libxfs_init
*li
);
167 extern int libxfs_device_alignment (void);
169 /* check or write log footer: specify device, log size in blocks & uuid */
170 typedef char *(libxfs_get_block_t
)(char *, int, void *);
173 * Helpers to clear the log to a particular log cycle.
175 #define XLOG_INIT_CYCLE 1
176 extern int libxfs_log_clear(struct xfs_buftarg
*, char *, xfs_daddr_t
,
177 uint
, uuid_t
*, int, int, int, int, bool);
178 extern int libxfs_log_header(char *, uuid_t
*, int, int, int, xfs_lsn_t
,
179 xfs_lsn_t
, libxfs_get_block_t
*, void *);
182 /* Shared utility routines */
184 int libxfs_alloc_file_space(struct xfs_inode
*ip
, xfs_off_t offset
,
185 xfs_off_t len
, uint32_t bmapi_flags
);
186 int libxfs_file_write(struct xfs_inode
*ip
, void *buf
, off_t pos
,
189 /* XXX: this is messy and needs fixing */
190 #ifndef __LIBXFS_INTERNAL_XFS_H__
191 extern void cmn_err(int, char *, ...);
192 enum ce
{ CE_DEBUG
, CE_CONT
, CE_NOTE
, CE_WARN
, CE_ALERT
, CE_PANIC
};
195 #include "xfs_ialloc.h"
197 #include "xfs_attr_leaf.h"
198 #include "xfs_attr_remote.h"
199 #include "xfs_trans_space.h"
201 #define XFS_INOBT_IS_FREE_DISK(rp,i) \
202 ((be64_to_cpu((rp)->ir_free) & XFS_INOBT_MASK(i)) != 0)
205 xfs_inobt_is_sparse_disk(
206 struct xfs_inobt_rec
*rp
,
212 holemask
= be16_to_cpu(rp
->ir_u
.sp
.ir_holemask
);
213 spshift
= offset
/ XFS_INODES_PER_HOLEMASK_BIT
;
214 if ((1 << spshift
) & holemask
)
221 libxfs_bmbt_disk_get_all(
222 struct xfs_bmbt_rec
*rec
,
223 struct xfs_bmbt_irec
*irec
)
225 uint64_t l0
= get_unaligned_be64(&rec
->l0
);
226 uint64_t l1
= get_unaligned_be64(&rec
->l1
);
228 irec
->br_startoff
= (l0
& xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN
)) >> 9;
229 irec
->br_startblock
= ((l0
& xfs_mask64lo(9)) << 43) | (l1
>> 21);
230 irec
->br_blockcount
= l1
& xfs_mask64lo(21);
231 if (l0
>> (64 - BMBT_EXNTFLAG_BITLEN
))
232 irec
->br_state
= XFS_EXT_UNWRITTEN
;
234 irec
->br_state
= XFS_EXT_NORM
;
237 #include "xfs_attr.h"
238 #include "topology.h"
241 * Superblock helpers for programs that act on independent superblock
242 * structures. These used to be part of xfs_format.h.
244 static inline bool xfs_sb_version_haslazysbcount(struct xfs_sb
*sbp
)
246 return (XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
) ||
247 (xfs_sb_version_hasmorebits(sbp
) &&
248 (sbp
->sb_features2
& XFS_SB_VERSION2_LAZYSBCOUNTBIT
));
251 static inline bool xfs_sb_version_hascrc(struct xfs_sb
*sbp
)
253 return XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
;
256 static inline bool xfs_sb_version_hasmetauuid(struct xfs_sb
*sbp
)
258 return (XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
) &&
259 (sbp
->sb_features_incompat
& XFS_SB_FEAT_INCOMPAT_META_UUID
);
262 static inline bool xfs_sb_version_hasalign(struct xfs_sb
*sbp
)
264 return (XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
||
265 (sbp
->sb_versionnum
& XFS_SB_VERSION_ALIGNBIT
));
268 static inline bool xfs_sb_version_hasdalign(struct xfs_sb
*sbp
)
270 return (sbp
->sb_versionnum
& XFS_SB_VERSION_DALIGNBIT
);
273 static inline bool xfs_sb_version_haslogv2(struct xfs_sb
*sbp
)
275 return XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
||
276 (sbp
->sb_versionnum
& XFS_SB_VERSION_LOGV2BIT
);
279 static inline bool xfs_sb_version_hassector(struct xfs_sb
*sbp
)
281 return (sbp
->sb_versionnum
& XFS_SB_VERSION_SECTORBIT
);
284 static inline bool xfs_sb_version_needsrepair(struct xfs_sb
*sbp
)
286 return XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
&&
287 (sbp
->sb_features_incompat
& XFS_SB_FEAT_INCOMPAT_NEEDSREPAIR
);
290 static inline bool xfs_sb_version_hassparseinodes(struct xfs_sb
*sbp
)
292 return XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
&&
293 xfs_sb_has_incompat_feature(sbp
, XFS_SB_FEAT_INCOMPAT_SPINODES
);
296 static inline bool xfs_sb_version_haszoned(struct xfs_sb
*sbp
)
298 return XFS_SB_VERSION_NUM(sbp
) == XFS_SB_VERSION_5
&&
299 xfs_sb_has_incompat_feature(sbp
, XFS_SB_FEAT_INCOMPAT_ZONED
);
302 #endif /* __LIBXFS_H__ */