]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/xfs/xfs_bmap.h
xfs: move btree cursor into bmalloca
[mirror_ubuntu-bionic-kernel.git] / fs / xfs / xfs_bmap.h
CommitLineData
1da177e4 1/*
3e57ecf6 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4
LT
17 */
18#ifndef __XFS_BMAP_H__
19#define __XFS_BMAP_H__
20
21struct getbmap;
22struct xfs_bmbt_irec;
4eea22f0 23struct xfs_ifork;
1da177e4
LT
24struct xfs_inode;
25struct xfs_mount;
26struct xfs_trans;
27
a8272ce0
DC
28extern kmem_zone_t *xfs_bmap_free_item_zone;
29
1da177e4
LT
30/*
31 * List of extents to be free "later".
32 * The list is kept sorted on xbf_startblock.
33 */
34typedef struct xfs_bmap_free_item
35{
36 xfs_fsblock_t xbfi_startblock;/* starting fs block number */
37 xfs_extlen_t xbfi_blockcount;/* number of blocks in extent */
38 struct xfs_bmap_free_item *xbfi_next; /* link to next entry */
39} xfs_bmap_free_item_t;
40
41/*
42 * Header for free extent list.
b877e3d3
LM
43 *
44 * xbf_low is used by the allocator to activate the lowspace algorithm -
45 * when free space is running low the extent allocator may choose to
46 * allocate an extent from an AG without leaving sufficient space for
47 * a btree split when inserting the new extent. In this case the allocator
48 * will enable the lowspace algorithm which is supposed to allow further
49 * allocations (such as btree splits and newroots) to allocate from
50 * sequential AGs. In order to avoid locking AGs out of order the lowspace
51 * algorithm will start searching for free space from AG 0. If the correct
52 * transaction reservations have been made then this algorithm will eventually
53 * find all the space it needs.
1da177e4
LT
54 */
55typedef struct xfs_bmap_free
56{
57 xfs_bmap_free_item_t *xbf_first; /* list of to-be-free extents */
58 int xbf_count; /* count of items on list */
b877e3d3 59 int xbf_low; /* alloc in low mode */
1da177e4
LT
60} xfs_bmap_free_t;
61
62#define XFS_BMAP_MAX_NMAP 4
63
64/*
c0dc7828 65 * Flags for xfs_bmapi_*
1da177e4 66 */
c0dc7828
DC
67#define XFS_BMAPI_ENTIRE 0x001 /* return entire extent, not trimmed */
68#define XFS_BMAPI_METADATA 0x002 /* mapping metadata not user data */
69#define XFS_BMAPI_ATTRFORK 0x004 /* use attribute fork not data */
70#define XFS_BMAPI_PREALLOC 0x008 /* preallocation op: unwritten space */
71#define XFS_BMAPI_IGSTATE 0x010 /* Ignore state - */
1da177e4 72 /* combine contig. space */
c0dc7828 73#define XFS_BMAPI_CONTIG 0x020 /* must allocate only one extent */
44722352
DC
74/*
75 * unwritten extent conversion - this needs write cache flushing and no additional
76 * allocation alignments. When specified with XFS_BMAPI_PREALLOC it converts
77 * from written to unwritten, otherwise convert from unwritten to written.
78 */
c0dc7828 79#define XFS_BMAPI_CONVERT 0x040
1da177e4 80
0b1b213f 81#define XFS_BMAPI_FLAGS \
0b1b213f
CH
82 { XFS_BMAPI_ENTIRE, "ENTIRE" }, \
83 { XFS_BMAPI_METADATA, "METADATA" }, \
0b1b213f 84 { XFS_BMAPI_ATTRFORK, "ATTRFORK" }, \
0b1b213f
CH
85 { XFS_BMAPI_PREALLOC, "PREALLOC" }, \
86 { XFS_BMAPI_IGSTATE, "IGSTATE" }, \
87 { XFS_BMAPI_CONTIG, "CONTIG" }, \
88 { XFS_BMAPI_CONVERT, "CONVERT" }
89
90
a844f451
NS
91static inline int xfs_bmapi_aflag(int w)
92{
93 return (w == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0);
94}
1da177e4
LT
95
96/*
97 * Special values for xfs_bmbt_irec_t br_startblock field.
98 */
99#define DELAYSTARTBLOCK ((xfs_fsblock_t)-1LL)
100#define HOLESTARTBLOCK ((xfs_fsblock_t)-2LL)
101
a844f451
NS
102static inline void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp)
103{
1da177e4 104 ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
a844f451
NS
105 (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK);
106}
1da177e4
LT
107
108/*
109 * Argument structure for xfs_bmap_alloc.
110 */
111typedef struct xfs_bmalloca {
0937e0fd
DC
112 xfs_fsblock_t *firstblock; /* i/o first block allocated */
113 struct xfs_bmap_free *flist; /* bmap freelist */
1da177e4
LT
114 struct xfs_trans *tp; /* transaction pointer */
115 struct xfs_inode *ip; /* incore inode pointer */
baf41a52
DC
116 struct xfs_bmbt_irec prev; /* extent before the new one */
117 struct xfs_bmbt_irec got; /* extent after, or delayed */
3a75667e
DC
118
119 xfs_fileoff_t offset; /* offset in file filling in */
120 xfs_extlen_t length; /* i/o length asked/allocated */
121 xfs_fsblock_t blkno; /* starting block of new extent */
122
29c8d17a
DC
123 struct xfs_btree_cur *cur; /* btree cursor */
124
1da177e4 125 xfs_extlen_t total; /* total blocks needed for xaction */
9da096fd 126 xfs_extlen_t minlen; /* minimum allocation size (blocks) */
1da177e4
LT
127 xfs_extlen_t minleft; /* amount must be left after alloc */
128 char eof; /* set if allocating past last extent */
129 char wasdel; /* replacing a delayed allocation */
130 char userdata;/* set if is user data */
dd9f438e
NS
131 char aeof; /* allocated space at eof */
132 char conv; /* overwriting unwritten extents */
1da177e4
LT
133} xfs_bmalloca_t;
134
7574aa92
CH
135/*
136 * Flags for xfs_bmap_add_extent*.
137 */
138#define BMAP_LEFT_CONTIG (1 << 0)
139#define BMAP_RIGHT_CONTIG (1 << 1)
140#define BMAP_LEFT_FILLING (1 << 2)
141#define BMAP_RIGHT_FILLING (1 << 3)
142#define BMAP_LEFT_DELAY (1 << 4)
143#define BMAP_RIGHT_DELAY (1 << 5)
144#define BMAP_LEFT_VALID (1 << 6)
145#define BMAP_RIGHT_VALID (1 << 7)
6ef35544 146#define BMAP_ATTRFORK (1 << 8)
7574aa92 147
0b1b213f
CH
148#define XFS_BMAP_EXT_FLAGS \
149 { BMAP_LEFT_CONTIG, "LC" }, \
150 { BMAP_RIGHT_CONTIG, "RC" }, \
151 { BMAP_LEFT_FILLING, "LF" }, \
152 { BMAP_RIGHT_FILLING, "RF" }, \
153 { BMAP_ATTRFORK, "ATTR" }
1da177e4
LT
154
155/*
156 * Add bmap trace insert entries for all the contents of the extent list.
0b1b213f
CH
157 *
158 * Quite excessive tracing. Only do this for debug builds.
1da177e4 159 */
0b1b213f 160#if defined(__KERNEL) && defined(DEBUG)
1da177e4
LT
161void
162xfs_bmap_trace_exlist(
1da177e4
LT
163 struct xfs_inode *ip, /* incore inode pointer */
164 xfs_extnum_t cnt, /* count of entries in list */
0b1b213f
CH
165 int whichfork,
166 unsigned long caller_ip); /* data or attr fork */
3a59c94c 167#define XFS_BMAP_TRACE_EXLIST(ip,c,w) \
0b1b213f
CH
168 xfs_bmap_trace_exlist(ip,c,w, _THIS_IP_)
169#else
3a59c94c 170#define XFS_BMAP_TRACE_EXLIST(ip,c,w)
0b1b213f 171#endif
1da177e4
LT
172
173/*
174 * Convert inode from non-attributed to attributed.
175 * Must not be in a transaction, ip must not be locked.
176 */
177int /* error code */
178xfs_bmap_add_attrfork(
179 struct xfs_inode *ip, /* incore inode pointer */
d8cc890d
NS
180 int size, /* space needed for new attribute */
181 int rsvd); /* flag for reserved block allocation */
1da177e4
LT
182
183/*
184 * Add the extent to the list of extents to be free at transaction end.
185 * The list is maintained sorted (by block number).
186 */
187void
188xfs_bmap_add_free(
189 xfs_fsblock_t bno, /* fs block number of extent */
190 xfs_filblks_t len, /* length of extent */
191 xfs_bmap_free_t *flist, /* list of extents */
192 struct xfs_mount *mp); /* mount point structure */
193
194/*
195 * Routine to clean up the free list data structure when
196 * an error occurs during a transaction.
197 */
198void
199xfs_bmap_cancel(
200 xfs_bmap_free_t *flist); /* free list to clean up */
201
202/*
203 * Compute and fill in the value of the maximum depth of a bmap btree
204 * in this filesystem. Done once, during mount.
205 */
206void
207xfs_bmap_compute_maxlevels(
208 struct xfs_mount *mp, /* file system mount structure */
209 int whichfork); /* data or attr fork */
210
1da177e4
LT
211/*
212 * Returns the file-relative block number of the first unused block in the file.
213 * This is the lowest-address hole if the file has holes, else the first block
214 * past the end of file.
215 */
216int /* error */
217xfs_bmap_first_unused(
218 struct xfs_trans *tp, /* transaction pointer */
219 struct xfs_inode *ip, /* incore inode */
220 xfs_extlen_t len, /* size of hole to find */
221 xfs_fileoff_t *unused, /* unused block num */
222 int whichfork); /* data or attr fork */
223
224/*
225 * Returns the file-relative block number of the last block + 1 before
226 * last_block (input value) in the file.
227 * This is not based on i_size, it is based on the extent list.
228 * Returns 0 for local files, as they do not have an extent list.
229 */
230int /* error */
231xfs_bmap_last_before(
232 struct xfs_trans *tp, /* transaction pointer */
233 struct xfs_inode *ip, /* incore inode */
234 xfs_fileoff_t *last_block, /* last block */
235 int whichfork); /* data or attr fork */
236
237/*
238 * Returns the file-relative block number of the first block past eof in
239 * the file. This is not based on i_size, it is based on the extent list.
240 * Returns 0 for local files, as they do not have an extent list.
241 */
242int /* error */
243xfs_bmap_last_offset(
244 struct xfs_trans *tp, /* transaction pointer */
245 struct xfs_inode *ip, /* incore inode */
246 xfs_fileoff_t *unused, /* last block num */
247 int whichfork); /* data or attr fork */
248
249/*
250 * Returns whether the selected fork of the inode has exactly one
251 * block or not. For the data fork we check this matches di_size,
252 * implying the file's range is 0..bsize-1.
253 */
254int
255xfs_bmap_one_block(
256 struct xfs_inode *ip, /* incore inode */
257 int whichfork); /* data or attr fork */
258
259/*
260 * Read in the extents to iu_extents.
261 * All inode fields are set up by caller, we just traverse the btree
262 * and copy the records in.
263 */
264int /* error */
265xfs_bmap_read_extents(
266 struct xfs_trans *tp, /* transaction pointer */
267 struct xfs_inode *ip, /* incore inode */
268 int whichfork); /* data or attr fork */
269
5c8ed202
DC
270int xfs_bmapi_read(struct xfs_inode *ip, xfs_fileoff_t bno,
271 xfs_filblks_t len, struct xfs_bmbt_irec *mval,
272 int *nmap, int flags);
4403280a
CH
273int xfs_bmapi_delay(struct xfs_inode *ip, xfs_fileoff_t bno,
274 xfs_filblks_t len, struct xfs_bmbt_irec *mval,
275 int *nmap, int flags);
c0dc7828
DC
276int xfs_bmapi_write(struct xfs_trans *tp, struct xfs_inode *ip,
277 xfs_fileoff_t bno, xfs_filblks_t len, int flags,
278 xfs_fsblock_t *firstblock, xfs_extlen_t total,
279 struct xfs_bmbt_irec *mval, int *nmap,
280 struct xfs_bmap_free *flist);
5c8ed202 281
1da177e4
LT
282/*
283 * Unmap (remove) blocks from a file.
284 * If nexts is nonzero then the number of extents to remove is limited to
285 * that value. If not all extents in the block range can be removed then
286 * *done is set.
287 */
288int /* error */
289xfs_bunmapi(
290 struct xfs_trans *tp, /* transaction pointer */
291 struct xfs_inode *ip, /* incore inode */
292 xfs_fileoff_t bno, /* starting offset to unmap */
293 xfs_filblks_t len, /* length to unmap in file */
294 int flags, /* XFS_BMAPI_... */
295 xfs_extnum_t nexts, /* number of extents max */
296 xfs_fsblock_t *firstblock, /* first allocated block
297 controls a.g. for allocs */
298 xfs_bmap_free_t *flist, /* i/o: list extents to free */
299 int *done); /* set if not done yet */
300
847fff5c
BN
301/*
302 * Check an extent list, which has just been read, for
303 * any bit in the extent flag field.
304 */
305int
306xfs_check_nostate_extents(
307 struct xfs_ifork *ifp,
308 xfs_extnum_t idx,
309 xfs_extnum_t num);
310
1a5902c5
CH
311uint
312xfs_default_attroffset(
313 struct xfs_inode *ip);
314
847fff5c
BN
315#ifdef __KERNEL__
316
317/*
318 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
319 * caller. Frees all the extents that need freeing, which must be done
320 * last due to locking considerations.
321 *
322 * Return 1 if the given transaction was committed and a new one allocated,
323 * and 0 otherwise.
324 */
325int /* error */
326xfs_bmap_finish(
327 struct xfs_trans **tp, /* transaction pointer addr */
328 xfs_bmap_free_t *flist, /* i/o: list extents to free */
329 int *committed); /* xact committed or not */
330
8a7141a8
ES
331/* bmap to userspace formatter - copy to user & advance pointer */
332typedef int (*xfs_bmap_format_t)(void **, struct getbmapx *, int *);
333
1da177e4 334/*
8a7141a8 335 * Get inode's extents as described in bmv, and format for output.
1da177e4
LT
336 */
337int /* error code */
338xfs_getbmap(
993386c1 339 xfs_inode_t *ip,
8a7141a8
ES
340 struct getbmapx *bmv, /* user bmap structure */
341 xfs_bmap_format_t formatter, /* format to user */
342 void *arg); /* formatter arg */
1da177e4 343
1da177e4
LT
344/*
345 * Check if the endoff is outside the last extent. If so the caller will grow
346 * the allocation to a stripe unit boundary
347 */
348int
349xfs_bmap_eof(
350 struct xfs_inode *ip,
351 xfs_fileoff_t endoff,
352 int whichfork,
353 int *eof);
354
355/*
356 * Count fsblocks of the given fork.
357 */
358int
359xfs_bmap_count_blocks(
360 xfs_trans_t *tp,
361 struct xfs_inode *ip,
362 int whichfork,
363 int *count);
364
c726de44
DC
365int
366xfs_bmap_punch_delalloc_range(
367 struct xfs_inode *ip,
368 xfs_fileoff_t start_fsb,
369 xfs_fileoff_t length);
1da177e4
LT
370#endif /* __KERNEL__ */
371
372#endif /* __XFS_BMAP_H__ */