Loading...
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2016 Oracle. All Rights Reserved.
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
5 */
6#ifndef __XFS_RMAP_H__
7#define __XFS_RMAP_H__
8
9struct xfs_perag;
10
11static inline void
12xfs_rmap_ino_bmbt_owner(
13 struct xfs_owner_info *oi,
14 xfs_ino_t ino,
15 int whichfork)
16{
17 oi->oi_owner = ino;
18 oi->oi_offset = 0;
19 oi->oi_flags = XFS_OWNER_INFO_BMBT_BLOCK;
20 if (whichfork == XFS_ATTR_FORK)
21 oi->oi_flags |= XFS_OWNER_INFO_ATTR_FORK;
22}
23
24static inline void
25xfs_rmap_ino_owner(
26 struct xfs_owner_info *oi,
27 xfs_ino_t ino,
28 int whichfork,
29 xfs_fileoff_t offset)
30{
31 oi->oi_owner = ino;
32 oi->oi_offset = offset;
33 oi->oi_flags = 0;
34 if (whichfork == XFS_ATTR_FORK)
35 oi->oi_flags |= XFS_OWNER_INFO_ATTR_FORK;
36}
37
38static inline bool
39xfs_rmap_should_skip_owner_update(
40 const struct xfs_owner_info *oi)
41{
42 return oi->oi_owner == XFS_RMAP_OWN_NULL;
43}
44
45/* Reverse mapping functions. */
46
47struct xfs_buf;
48
49static inline __u64
50xfs_rmap_irec_offset_pack(
51 const struct xfs_rmap_irec *irec)
52{
53 __u64 x;
54
55 x = XFS_RMAP_OFF(irec->rm_offset);
56 if (irec->rm_flags & XFS_RMAP_ATTR_FORK)
57 x |= XFS_RMAP_OFF_ATTR_FORK;
58 if (irec->rm_flags & XFS_RMAP_BMBT_BLOCK)
59 x |= XFS_RMAP_OFF_BMBT_BLOCK;
60 if (irec->rm_flags & XFS_RMAP_UNWRITTEN)
61 x |= XFS_RMAP_OFF_UNWRITTEN;
62 return x;
63}
64
65static inline xfs_failaddr_t
66xfs_rmap_irec_offset_unpack(
67 __u64 offset,
68 struct xfs_rmap_irec *irec)
69{
70 if (offset & ~(XFS_RMAP_OFF_MASK | XFS_RMAP_OFF_FLAGS))
71 return __this_address;
72
73 irec->rm_offset = XFS_RMAP_OFF(offset);
74 irec->rm_flags = 0;
75 if (offset & XFS_RMAP_OFF_ATTR_FORK)
76 irec->rm_flags |= XFS_RMAP_ATTR_FORK;
77 if (offset & XFS_RMAP_OFF_BMBT_BLOCK)
78 irec->rm_flags |= XFS_RMAP_BMBT_BLOCK;
79 if (offset & XFS_RMAP_OFF_UNWRITTEN)
80 irec->rm_flags |= XFS_RMAP_UNWRITTEN;
81 return NULL;
82}
83
84static inline void
85xfs_owner_info_unpack(
86 const struct xfs_owner_info *oinfo,
87 uint64_t *owner,
88 uint64_t *offset,
89 unsigned int *flags)
90{
91 unsigned int r = 0;
92
93 *owner = oinfo->oi_owner;
94 *offset = oinfo->oi_offset;
95 if (oinfo->oi_flags & XFS_OWNER_INFO_ATTR_FORK)
96 r |= XFS_RMAP_ATTR_FORK;
97 if (oinfo->oi_flags & XFS_OWNER_INFO_BMBT_BLOCK)
98 r |= XFS_RMAP_BMBT_BLOCK;
99 *flags = r;
100}
101
102static inline void
103xfs_owner_info_pack(
104 struct xfs_owner_info *oinfo,
105 uint64_t owner,
106 uint64_t offset,
107 unsigned int flags)
108{
109 oinfo->oi_owner = owner;
110 oinfo->oi_offset = XFS_RMAP_OFF(offset);
111 oinfo->oi_flags = 0;
112 if (flags & XFS_RMAP_ATTR_FORK)
113 oinfo->oi_flags |= XFS_OWNER_INFO_ATTR_FORK;
114 if (flags & XFS_RMAP_BMBT_BLOCK)
115 oinfo->oi_flags |= XFS_OWNER_INFO_BMBT_BLOCK;
116}
117
118int xfs_rmap_alloc(struct xfs_trans *tp, struct xfs_buf *agbp,
119 struct xfs_perag *pag, xfs_agblock_t bno, xfs_extlen_t len,
120 const struct xfs_owner_info *oinfo);
121int xfs_rmap_free(struct xfs_trans *tp, struct xfs_buf *agbp,
122 struct xfs_perag *pag, xfs_agblock_t bno, xfs_extlen_t len,
123 const struct xfs_owner_info *oinfo);
124
125int xfs_rmap_lookup_le(struct xfs_btree_cur *cur, xfs_agblock_t bno,
126 uint64_t owner, uint64_t offset, unsigned int flags,
127 struct xfs_rmap_irec *irec, int *stat);
128int xfs_rmap_lookup_eq(struct xfs_btree_cur *cur, xfs_agblock_t bno,
129 xfs_extlen_t len, uint64_t owner, uint64_t offset,
130 unsigned int flags, int *stat);
131int xfs_rmap_insert(struct xfs_btree_cur *rcur, xfs_agblock_t agbno,
132 xfs_extlen_t len, uint64_t owner, uint64_t offset,
133 unsigned int flags);
134int xfs_rmap_get_rec(struct xfs_btree_cur *cur, struct xfs_rmap_irec *irec,
135 int *stat);
136
137typedef int (*xfs_rmap_query_range_fn)(
138 struct xfs_btree_cur *cur,
139 const struct xfs_rmap_irec *rec,
140 void *priv);
141
142int xfs_rmap_query_range(struct xfs_btree_cur *cur,
143 const struct xfs_rmap_irec *low_rec,
144 const struct xfs_rmap_irec *high_rec,
145 xfs_rmap_query_range_fn fn, void *priv);
146int xfs_rmap_query_all(struct xfs_btree_cur *cur, xfs_rmap_query_range_fn fn,
147 void *priv);
148
149enum xfs_rmap_intent_type {
150 XFS_RMAP_MAP,
151 XFS_RMAP_MAP_SHARED,
152 XFS_RMAP_UNMAP,
153 XFS_RMAP_UNMAP_SHARED,
154 XFS_RMAP_CONVERT,
155 XFS_RMAP_CONVERT_SHARED,
156 XFS_RMAP_ALLOC,
157 XFS_RMAP_FREE,
158};
159
160struct xfs_rmap_intent {
161 struct list_head ri_list;
162 enum xfs_rmap_intent_type ri_type;
163 int ri_whichfork;
164 uint64_t ri_owner;
165 struct xfs_bmbt_irec ri_bmap;
166 struct xfs_perag *ri_pag;
167};
168
169void xfs_rmap_update_get_group(struct xfs_mount *mp,
170 struct xfs_rmap_intent *ri);
171
172/* functions for updating the rmapbt based on bmbt map/unmap operations */
173void xfs_rmap_map_extent(struct xfs_trans *tp, struct xfs_inode *ip,
174 int whichfork, struct xfs_bmbt_irec *imap);
175void xfs_rmap_unmap_extent(struct xfs_trans *tp, struct xfs_inode *ip,
176 int whichfork, struct xfs_bmbt_irec *imap);
177void xfs_rmap_convert_extent(struct xfs_mount *mp, struct xfs_trans *tp,
178 struct xfs_inode *ip, int whichfork,
179 struct xfs_bmbt_irec *imap);
180void xfs_rmap_alloc_extent(struct xfs_trans *tp, xfs_agnumber_t agno,
181 xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner);
182void xfs_rmap_free_extent(struct xfs_trans *tp, xfs_agnumber_t agno,
183 xfs_agblock_t bno, xfs_extlen_t len, uint64_t owner);
184
185void xfs_rmap_finish_one_cleanup(struct xfs_trans *tp,
186 struct xfs_btree_cur *rcur, int error);
187int xfs_rmap_finish_one(struct xfs_trans *tp, struct xfs_rmap_intent *ri,
188 struct xfs_btree_cur **pcur);
189
190int xfs_rmap_lookup_le_range(struct xfs_btree_cur *cur, xfs_agblock_t bno,
191 uint64_t owner, uint64_t offset, unsigned int flags,
192 struct xfs_rmap_irec *irec, int *stat);
193int xfs_rmap_compare(const struct xfs_rmap_irec *a,
194 const struct xfs_rmap_irec *b);
195union xfs_btree_rec;
196xfs_failaddr_t xfs_rmap_btrec_to_irec(const union xfs_btree_rec *rec,
197 struct xfs_rmap_irec *irec);
198xfs_failaddr_t xfs_rmap_check_irec(struct xfs_btree_cur *cur,
199 const struct xfs_rmap_irec *irec);
200
201int xfs_rmap_has_records(struct xfs_btree_cur *cur, xfs_agblock_t bno,
202 xfs_extlen_t len, enum xbtree_recpacking *outcome);
203
204struct xfs_rmap_matches {
205 /* Number of owner matches. */
206 unsigned long long matches;
207
208 /* Number of non-owner matches. */
209 unsigned long long non_owner_matches;
210
211 /* Number of non-owner matches that conflict with the owner matches. */
212 unsigned long long bad_non_owner_matches;
213};
214
215int xfs_rmap_count_owners(struct xfs_btree_cur *cur, xfs_agblock_t bno,
216 xfs_extlen_t len, const struct xfs_owner_info *oinfo,
217 struct xfs_rmap_matches *rmatch);
218int xfs_rmap_has_other_keys(struct xfs_btree_cur *cur, xfs_agblock_t bno,
219 xfs_extlen_t len, const struct xfs_owner_info *oinfo,
220 bool *has_other);
221int xfs_rmap_map_raw(struct xfs_btree_cur *cur, struct xfs_rmap_irec *rmap);
222
223extern const struct xfs_owner_info XFS_RMAP_OINFO_SKIP_UPDATE;
224extern const struct xfs_owner_info XFS_RMAP_OINFO_ANY_OWNER;
225extern const struct xfs_owner_info XFS_RMAP_OINFO_FS;
226extern const struct xfs_owner_info XFS_RMAP_OINFO_LOG;
227extern const struct xfs_owner_info XFS_RMAP_OINFO_AG;
228extern const struct xfs_owner_info XFS_RMAP_OINFO_INOBT;
229extern const struct xfs_owner_info XFS_RMAP_OINFO_INODES;
230extern const struct xfs_owner_info XFS_RMAP_OINFO_REFC;
231extern const struct xfs_owner_info XFS_RMAP_OINFO_COW;
232
233extern struct kmem_cache *xfs_rmap_intent_cache;
234
235int __init xfs_rmap_intent_init_cache(void);
236void xfs_rmap_intent_destroy_cache(void);
237
238#endif /* __XFS_RMAP_H__ */
1/*
2 * Copyright (C) 2016 Oracle. All Rights Reserved.
3 *
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it would be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write the Free Software Foundation,
18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20#ifndef __XFS_RMAP_H__
21#define __XFS_RMAP_H__
22
23static inline void
24xfs_rmap_ag_owner(
25 struct xfs_owner_info *oi,
26 uint64_t owner)
27{
28 oi->oi_owner = owner;
29 oi->oi_offset = 0;
30 oi->oi_flags = 0;
31}
32
33static inline void
34xfs_rmap_ino_bmbt_owner(
35 struct xfs_owner_info *oi,
36 xfs_ino_t ino,
37 int whichfork)
38{
39 oi->oi_owner = ino;
40 oi->oi_offset = 0;
41 oi->oi_flags = XFS_OWNER_INFO_BMBT_BLOCK;
42 if (whichfork == XFS_ATTR_FORK)
43 oi->oi_flags |= XFS_OWNER_INFO_ATTR_FORK;
44}
45
46static inline void
47xfs_rmap_ino_owner(
48 struct xfs_owner_info *oi,
49 xfs_ino_t ino,
50 int whichfork,
51 xfs_fileoff_t offset)
52{
53 oi->oi_owner = ino;
54 oi->oi_offset = offset;
55 oi->oi_flags = 0;
56 if (whichfork == XFS_ATTR_FORK)
57 oi->oi_flags |= XFS_OWNER_INFO_ATTR_FORK;
58}
59
60static inline void
61xfs_rmap_skip_owner_update(
62 struct xfs_owner_info *oi)
63{
64 oi->oi_owner = XFS_RMAP_OWN_UNKNOWN;
65}
66
67/* Reverse mapping functions. */
68
69struct xfs_buf;
70
71static inline __u64
72xfs_rmap_irec_offset_pack(
73 const struct xfs_rmap_irec *irec)
74{
75 __u64 x;
76
77 x = XFS_RMAP_OFF(irec->rm_offset);
78 if (irec->rm_flags & XFS_RMAP_ATTR_FORK)
79 x |= XFS_RMAP_OFF_ATTR_FORK;
80 if (irec->rm_flags & XFS_RMAP_BMBT_BLOCK)
81 x |= XFS_RMAP_OFF_BMBT_BLOCK;
82 if (irec->rm_flags & XFS_RMAP_UNWRITTEN)
83 x |= XFS_RMAP_OFF_UNWRITTEN;
84 return x;
85}
86
87static inline int
88xfs_rmap_irec_offset_unpack(
89 __u64 offset,
90 struct xfs_rmap_irec *irec)
91{
92 if (offset & ~(XFS_RMAP_OFF_MASK | XFS_RMAP_OFF_FLAGS))
93 return -EFSCORRUPTED;
94 irec->rm_offset = XFS_RMAP_OFF(offset);
95 if (offset & XFS_RMAP_OFF_ATTR_FORK)
96 irec->rm_flags |= XFS_RMAP_ATTR_FORK;
97 if (offset & XFS_RMAP_OFF_BMBT_BLOCK)
98 irec->rm_flags |= XFS_RMAP_BMBT_BLOCK;
99 if (offset & XFS_RMAP_OFF_UNWRITTEN)
100 irec->rm_flags |= XFS_RMAP_UNWRITTEN;
101 return 0;
102}
103
104static inline void
105xfs_owner_info_unpack(
106 struct xfs_owner_info *oinfo,
107 uint64_t *owner,
108 uint64_t *offset,
109 unsigned int *flags)
110{
111 unsigned int r = 0;
112
113 *owner = oinfo->oi_owner;
114 *offset = oinfo->oi_offset;
115 if (oinfo->oi_flags & XFS_OWNER_INFO_ATTR_FORK)
116 r |= XFS_RMAP_ATTR_FORK;
117 if (oinfo->oi_flags & XFS_OWNER_INFO_BMBT_BLOCK)
118 r |= XFS_RMAP_BMBT_BLOCK;
119 *flags = r;
120}
121
122static inline void
123xfs_owner_info_pack(
124 struct xfs_owner_info *oinfo,
125 uint64_t owner,
126 uint64_t offset,
127 unsigned int flags)
128{
129 oinfo->oi_owner = owner;
130 oinfo->oi_offset = XFS_RMAP_OFF(offset);
131 oinfo->oi_flags = 0;
132 if (flags & XFS_RMAP_ATTR_FORK)
133 oinfo->oi_flags |= XFS_OWNER_INFO_ATTR_FORK;
134 if (flags & XFS_RMAP_BMBT_BLOCK)
135 oinfo->oi_flags |= XFS_OWNER_INFO_BMBT_BLOCK;
136}
137
138int xfs_rmap_alloc(struct xfs_trans *tp, struct xfs_buf *agbp,
139 xfs_agnumber_t agno, xfs_agblock_t bno, xfs_extlen_t len,
140 struct xfs_owner_info *oinfo);
141int xfs_rmap_free(struct xfs_trans *tp, struct xfs_buf *agbp,
142 xfs_agnumber_t agno, xfs_agblock_t bno, xfs_extlen_t len,
143 struct xfs_owner_info *oinfo);
144
145int xfs_rmap_lookup_le(struct xfs_btree_cur *cur, xfs_agblock_t bno,
146 xfs_extlen_t len, uint64_t owner, uint64_t offset,
147 unsigned int flags, int *stat);
148int xfs_rmap_lookup_eq(struct xfs_btree_cur *cur, xfs_agblock_t bno,
149 xfs_extlen_t len, uint64_t owner, uint64_t offset,
150 unsigned int flags, int *stat);
151int xfs_rmap_insert(struct xfs_btree_cur *rcur, xfs_agblock_t agbno,
152 xfs_extlen_t len, uint64_t owner, uint64_t offset,
153 unsigned int flags);
154int xfs_rmap_get_rec(struct xfs_btree_cur *cur, struct xfs_rmap_irec *irec,
155 int *stat);
156
157typedef int (*xfs_rmap_query_range_fn)(
158 struct xfs_btree_cur *cur,
159 struct xfs_rmap_irec *rec,
160 void *priv);
161
162int xfs_rmap_query_range(struct xfs_btree_cur *cur,
163 struct xfs_rmap_irec *low_rec, struct xfs_rmap_irec *high_rec,
164 xfs_rmap_query_range_fn fn, void *priv);
165
166enum xfs_rmap_intent_type {
167 XFS_RMAP_MAP,
168 XFS_RMAP_MAP_SHARED,
169 XFS_RMAP_UNMAP,
170 XFS_RMAP_UNMAP_SHARED,
171 XFS_RMAP_CONVERT,
172 XFS_RMAP_CONVERT_SHARED,
173 XFS_RMAP_ALLOC,
174 XFS_RMAP_FREE,
175};
176
177struct xfs_rmap_intent {
178 struct list_head ri_list;
179 enum xfs_rmap_intent_type ri_type;
180 __uint64_t ri_owner;
181 int ri_whichfork;
182 struct xfs_bmbt_irec ri_bmap;
183};
184
185/* functions for updating the rmapbt based on bmbt map/unmap operations */
186int xfs_rmap_map_extent(struct xfs_mount *mp, struct xfs_defer_ops *dfops,
187 struct xfs_inode *ip, int whichfork,
188 struct xfs_bmbt_irec *imap);
189int xfs_rmap_unmap_extent(struct xfs_mount *mp, struct xfs_defer_ops *dfops,
190 struct xfs_inode *ip, int whichfork,
191 struct xfs_bmbt_irec *imap);
192int xfs_rmap_convert_extent(struct xfs_mount *mp, struct xfs_defer_ops *dfops,
193 struct xfs_inode *ip, int whichfork,
194 struct xfs_bmbt_irec *imap);
195int xfs_rmap_alloc_extent(struct xfs_mount *mp, struct xfs_defer_ops *dfops,
196 xfs_agnumber_t agno, xfs_agblock_t bno, xfs_extlen_t len,
197 __uint64_t owner);
198int xfs_rmap_free_extent(struct xfs_mount *mp, struct xfs_defer_ops *dfops,
199 xfs_agnumber_t agno, xfs_agblock_t bno, xfs_extlen_t len,
200 __uint64_t owner);
201
202void xfs_rmap_finish_one_cleanup(struct xfs_trans *tp,
203 struct xfs_btree_cur *rcur, int error);
204int xfs_rmap_finish_one(struct xfs_trans *tp, enum xfs_rmap_intent_type type,
205 __uint64_t owner, int whichfork, xfs_fileoff_t startoff,
206 xfs_fsblock_t startblock, xfs_filblks_t blockcount,
207 xfs_exntst_t state, struct xfs_btree_cur **pcur);
208
209int xfs_rmap_find_left_neighbor(struct xfs_btree_cur *cur, xfs_agblock_t bno,
210 uint64_t owner, uint64_t offset, unsigned int flags,
211 struct xfs_rmap_irec *irec, int *stat);
212int xfs_rmap_lookup_le_range(struct xfs_btree_cur *cur, xfs_agblock_t bno,
213 uint64_t owner, uint64_t offset, unsigned int flags,
214 struct xfs_rmap_irec *irec, int *stat);
215
216#endif /* __XFS_RMAP_H__ */