]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - include/xfs_bmap.h
xfsprogs: Die dir1 Die!
[thirdparty/xfsprogs-dev.git] / include / xfs_bmap.h
CommitLineData
2bd0ea18 1/*
5e656dbb 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
f302e9e4 3 * All Rights Reserved.
5000d01d 4 *
f302e9e4
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
2bd0ea18 7 * published by the Free Software Foundation.
5000d01d 8 *
f302e9e4
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.
5000d01d 13 *
f302e9e4
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
2bd0ea18
NS
17 */
18#ifndef __XFS_BMAP_H__
dfc130f3 19#define __XFS_BMAP_H__
2bd0ea18
NS
20
21struct getbmap;
22struct xfs_bmbt_irec;
5e656dbb 23struct xfs_ifork;
2bd0ea18
NS
24struct xfs_inode;
25struct xfs_mount;
26struct xfs_trans;
27
5e656dbb
BN
28extern kmem_zone_t *xfs_bmap_free_item_zone;
29
2bd0ea18
NS
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.
5e656dbb
BN
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.
2bd0ea18 54 */
dfc130f3 55typedef struct xfs_bmap_free
2bd0ea18
NS
56{
57 xfs_bmap_free_item_t *xbf_first; /* list of to-be-free extents */
58 int xbf_count; /* count of items on list */
5e656dbb 59 int xbf_low; /* alloc in low mode */
2bd0ea18
NS
60} xfs_bmap_free_t;
61
dfc130f3 62#define XFS_BMAP_MAX_NMAP 4
2bd0ea18
NS
63
64/*
65 * Flags for xfs_bmapi
66 */
dfc130f3 67#define XFS_BMAPI_WRITE 0x001 /* write operation: allocate space */
2bd0ea18
NS
68#define XFS_BMAPI_DELAY 0x002 /* delayed write operation */
69#define XFS_BMAPI_ENTIRE 0x004 /* return entire extent, not trimmed */
70#define XFS_BMAPI_METADATA 0x008 /* mapping metadata not user data */
56b2de80
DC
71#define XFS_BMAPI_ATTRFORK 0x010 /* use attribute fork not data */
72#define XFS_BMAPI_RSVBLOCKS 0x020 /* OK to alloc. reserved data blocks */
73#define XFS_BMAPI_PREALLOC 0x040 /* preallocation op: unwritten space */
74#define XFS_BMAPI_IGSTATE 0x080 /* Ignore state - */
2bd0ea18 75 /* combine contig. space */
56b2de80
DC
76#define XFS_BMAPI_CONTIG 0x100 /* must allocate only one extent */
77/*
78 * unwritten extent conversion - this needs write cache flushing and no additional
79 * allocation alignments. When specified with XFS_BMAPI_PREALLOC it converts
80 * from written to unwritten, otherwise convert from unwritten to written.
81 */
82#define XFS_BMAPI_CONVERT 0x200
83
84#define XFS_BMAPI_FLAGS \
85 { XFS_BMAPI_WRITE, "WRITE" }, \
86 { XFS_BMAPI_DELAY, "DELAY" }, \
87 { XFS_BMAPI_ENTIRE, "ENTIRE" }, \
88 { XFS_BMAPI_METADATA, "METADATA" }, \
89 { XFS_BMAPI_ATTRFORK, "ATTRFORK" }, \
90 { XFS_BMAPI_RSVBLOCKS, "RSVBLOCKS" }, \
91 { XFS_BMAPI_PREALLOC, "PREALLOC" }, \
92 { XFS_BMAPI_IGSTATE, "IGSTATE" }, \
93 { XFS_BMAPI_CONTIG, "CONTIG" }, \
94 { XFS_BMAPI_CONVERT, "CONVERT" }
95
2bd0ea18 96
f302e9e4
NS
97static inline int xfs_bmapi_aflag(int w)
98{
99 return (w == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0);
100}
2bd0ea18
NS
101
102/*
103 * Special values for xfs_bmbt_irec_t br_startblock field.
104 */
dfc130f3
RC
105#define DELAYSTARTBLOCK ((xfs_fsblock_t)-1LL)
106#define HOLESTARTBLOCK ((xfs_fsblock_t)-2LL)
2bd0ea18 107
f302e9e4
NS
108static inline void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp)
109{
2bd0ea18 110 ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
f302e9e4
NS
111 (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK);
112}
2bd0ea18
NS
113
114/*
115 * Argument structure for xfs_bmap_alloc.
116 */
117typedef struct xfs_bmalloca {
118 xfs_fsblock_t firstblock; /* i/o first block allocated */
119 xfs_fsblock_t rval; /* starting block of new extent */
120 xfs_fileoff_t off; /* offset in file filling in */
121 struct xfs_trans *tp; /* transaction pointer */
122 struct xfs_inode *ip; /* incore inode pointer */
dfc130f3 123 struct xfs_bmbt_irec *prevp; /* extent before the new one */
2bd0ea18
NS
124 struct xfs_bmbt_irec *gotp; /* extent after, or delayed */
125 xfs_extlen_t alen; /* i/o length asked/allocated */
126 xfs_extlen_t total; /* total blocks needed for xaction */
56b2de80 127 xfs_extlen_t minlen; /* minimum allocation size (blocks) */
2bd0ea18 128 xfs_extlen_t minleft; /* amount must be left after alloc */
85a875e9 129 char eof; /* set if allocating past last extent */
dfc130f3 130 char wasdel; /* replacing a delayed allocation */
85a875e9
ES
131 char userdata;/* set if is user data */
132 char low; /* low on space, using seq'l ags */
6e3140c7 133 char aeof; /* allocated space at eof */
399ab595 134 char conv; /* overwriting unwritten extents */
2bd0ea18
NS
135} xfs_bmalloca_t;
136
23aab3f9 137/*
56b2de80 138 * Flags for xfs_bmap_add_extent*.
23aab3f9 139 */
56b2de80
DC
140#define BMAP_LEFT_CONTIG (1 << 0)
141#define BMAP_RIGHT_CONTIG (1 << 1)
142#define BMAP_LEFT_FILLING (1 << 2)
143#define BMAP_RIGHT_FILLING (1 << 3)
144#define BMAP_LEFT_DELAY (1 << 4)
145#define BMAP_RIGHT_DELAY (1 << 5)
146#define BMAP_LEFT_VALID (1 << 6)
147#define BMAP_RIGHT_VALID (1 << 7)
148#define BMAP_ATTRFORK (1 << 8)
149
150#define XFS_BMAP_EXT_FLAGS \
151 { BMAP_LEFT_CONTIG, "LC" }, \
152 { BMAP_RIGHT_CONTIG, "RC" }, \
153 { BMAP_LEFT_FILLING, "LF" }, \
154 { BMAP_RIGHT_FILLING, "RF" }, \
155 { BMAP_ATTRFORK, "ATTR" }
23aab3f9
NS
156
157/*
158 * Add bmap trace insert entries for all the contents of the extent list.
56b2de80
DC
159 *
160 * Quite excessive tracing. Only do this for debug builds.
23aab3f9 161 */
56b2de80 162#if defined(__KERNEL) && defined(DEBUG)
23aab3f9
NS
163void
164xfs_bmap_trace_exlist(
23aab3f9
NS
165 struct xfs_inode *ip, /* incore inode pointer */
166 xfs_extnum_t cnt, /* count of entries in list */
56b2de80
DC
167 int whichfork,
168 unsigned long caller_ip); /* data or attr fork */
5e656dbb 169#define XFS_BMAP_TRACE_EXLIST(ip,c,w) \
56b2de80
DC
170 xfs_bmap_trace_exlist(ip,c,w, _THIS_IP_)
171#else
5e656dbb 172#define XFS_BMAP_TRACE_EXLIST(ip,c,w)
56b2de80 173#endif
23aab3f9 174
2bd0ea18
NS
175/*
176 * Convert inode from non-attributed to attributed.
177 * Must not be in a transaction, ip must not be locked.
178 */
179int /* error code */
180xfs_bmap_add_attrfork(
181 struct xfs_inode *ip, /* incore inode pointer */
ca86e759
NS
182 int size, /* space needed for new attribute */
183 int rsvd); /* flag for reserved block allocation */
2bd0ea18
NS
184
185/*
186 * Add the extent to the list of extents to be free at transaction end.
187 * The list is maintained sorted (by block number).
188 */
189void
190xfs_bmap_add_free(
191 xfs_fsblock_t bno, /* fs block number of extent */
192 xfs_filblks_t len, /* length of extent */
193 xfs_bmap_free_t *flist, /* list of extents */
194 struct xfs_mount *mp); /* mount point structure */
195
196/*
197 * Routine to clean up the free list data structure when
198 * an error occurs during a transaction.
199 */
200void
201xfs_bmap_cancel(
202 xfs_bmap_free_t *flist); /* free list to clean up */
203
5000d01d 204/*
2bd0ea18 205 * Compute and fill in the value of the maximum depth of a bmap btree
dfc130f3 206 * in this filesystem. Done once, during mount.
2bd0ea18
NS
207 */
208void
209xfs_bmap_compute_maxlevels(
210 struct xfs_mount *mp, /* file system mount structure */
211 int whichfork); /* data or attr fork */
212
2bd0ea18
NS
213/*
214 * Returns the file-relative block number of the first unused block in the file.
215 * This is the lowest-address hole if the file has holes, else the first block
216 * past the end of file.
217 */
218int /* error */
219xfs_bmap_first_unused(
220 struct xfs_trans *tp, /* transaction pointer */
221 struct xfs_inode *ip, /* incore inode */
222 xfs_extlen_t len, /* size of hole to find */
223 xfs_fileoff_t *unused, /* unused block num */
224 int whichfork); /* data or attr fork */
225
226/*
227 * Returns the file-relative block number of the last block + 1 before
228 * last_block (input value) in the file.
229 * This is not based on i_size, it is based on the extent list.
230 * Returns 0 for local files, as they do not have an extent list.
231 */
232int /* error */
233xfs_bmap_last_before(
234 struct xfs_trans *tp, /* transaction pointer */
235 struct xfs_inode *ip, /* incore inode */
236 xfs_fileoff_t *last_block, /* last block */
237 int whichfork); /* data or attr fork */
238
239/*
240 * Returns the file-relative block number of the first block past eof in
241 * the file. This is not based on i_size, it is based on the extent list.
242 * Returns 0 for local files, as they do not have an extent list.
243 */
244int /* error */
245xfs_bmap_last_offset(
246 struct xfs_trans *tp, /* transaction pointer */
247 struct xfs_inode *ip, /* incore inode */
248 xfs_fileoff_t *unused, /* last block num */
249 int whichfork); /* data or attr fork */
250
251/*
252 * Returns whether the selected fork of the inode has exactly one
253 * block or not. For the data fork we check this matches di_size,
254 * implying the file's range is 0..bsize-1.
255 */
256int
257xfs_bmap_one_block(
258 struct xfs_inode *ip, /* incore inode */
259 int whichfork); /* data or attr fork */
260
261/*
262 * Read in the extents to iu_extents.
263 * All inode fields are set up by caller, we just traverse the btree
264 * and copy the records in.
265 */
266int /* error */
267xfs_bmap_read_extents(
268 struct xfs_trans *tp, /* transaction pointer */
269 struct xfs_inode *ip, /* incore inode */
270 int whichfork); /* data or attr fork */
271
2bd0ea18
NS
272/*
273 * Map file blocks to filesystem blocks.
274 * File range is given by the bno/len pair.
275 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
276 * into a hole or past eof.
277 * Only allocates blocks from a single allocation group,
278 * to avoid locking problems.
279 * The returned value in "firstblock" from the first call in a transaction
280 * must be remembered and presented to subsequent calls in "firstblock".
281 * An upper bound for the number of blocks to be allocated is supplied to
282 * the first call in "total"; if no allocation group has that many free
5000d01d 283 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
2bd0ea18
NS
284 */
285int /* error */
286xfs_bmapi(
287 struct xfs_trans *tp, /* transaction pointer */
288 struct xfs_inode *ip, /* incore inode */
289 xfs_fileoff_t bno, /* starting file offs. mapped */
290 xfs_filblks_t len, /* length to map in file */
291 int flags, /* XFS_BMAPI_... */
292 xfs_fsblock_t *firstblock, /* first allocated block
293 controls a.g. for allocs */
294 xfs_extlen_t total, /* total blocks needed */
295 struct xfs_bmbt_irec *mval, /* output: map values */
296 int *nmap, /* i/o: mval size/count */
56b2de80 297 xfs_bmap_free_t *flist); /* i/o: list extents to free */
2bd0ea18
NS
298
299/*
300 * Map file blocks to filesystem blocks, simple version.
301 * One block only, read-only.
302 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
303 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
304 * was set and all the others were clear.
305 */
306int /* error */
307xfs_bmapi_single(
308 struct xfs_trans *tp, /* transaction pointer */
309 struct xfs_inode *ip, /* incore inode */
310 int whichfork, /* data or attr fork */
311 xfs_fsblock_t *fsb, /* output: mapped block */
312 xfs_fileoff_t bno); /* starting file offs. mapped */
313
314/*
315 * Unmap (remove) blocks from a file.
316 * If nexts is nonzero then the number of extents to remove is limited to
dfc130f3 317 * that value. If not all extents in the block range can be removed then
2bd0ea18
NS
318 * *done is set.
319 */
320int /* error */
321xfs_bunmapi(
322 struct xfs_trans *tp, /* transaction pointer */
323 struct xfs_inode *ip, /* incore inode */
324 xfs_fileoff_t bno, /* starting offset to unmap */
325 xfs_filblks_t len, /* length to unmap in file */
326 int flags, /* XFS_BMAPI_... */
327 xfs_extnum_t nexts, /* number of extents max */
328 xfs_fsblock_t *firstblock, /* first allocated block
329 controls a.g. for allocs */
330 xfs_bmap_free_t *flist, /* i/o: list extents to free */
331 int *done); /* set if not done yet */
332
5e656dbb
BN
333/*
334 * Check an extent list, which has just been read, for
335 * any bit in the extent flag field.
336 */
337int
338xfs_check_nostate_extents(
339 struct xfs_ifork *ifp,
340 xfs_extnum_t idx,
341 xfs_extnum_t num);
342
56b2de80
DC
343uint
344xfs_default_attroffset(
345 struct xfs_inode *ip);
346
5e656dbb
BN
347#ifdef __KERNEL__
348
349/*
350 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
351 * caller. Frees all the extents that need freeing, which must be done
352 * last due to locking considerations.
353 *
354 * Return 1 if the given transaction was committed and a new one allocated,
355 * and 0 otherwise.
356 */
357int /* error */
358xfs_bmap_finish(
359 struct xfs_trans **tp, /* transaction pointer addr */
360 xfs_bmap_free_t *flist, /* i/o: list extents to free */
361 int *committed); /* xact committed or not */
362
56b2de80
DC
363/* bmap to userspace formatter - copy to user & advance pointer */
364typedef int (*xfs_bmap_format_t)(void **, struct getbmapx *, int *);
365
2bd0ea18 366/*
56b2de80 367 * Get inode's extents as described in bmv, and format for output.
2bd0ea18
NS
368 */
369int /* error code */
370xfs_getbmap(
5e656dbb 371 xfs_inode_t *ip,
56b2de80
DC
372 struct getbmapx *bmv, /* user bmap structure */
373 xfs_bmap_format_t formatter, /* format to user */
374 void *arg); /* formatter arg */
2bd0ea18 375
2bd0ea18 376/*
5000d01d 377 * Check if the endoff is outside the last extent. If so the caller will grow
2bd0ea18
NS
378 * the allocation to a stripe unit boundary
379 */
380int
381xfs_bmap_eof(
dfc130f3
RC
382 struct xfs_inode *ip,
383 xfs_fileoff_t endoff,
384 int whichfork,
385 int *eof);
2bd0ea18
NS
386
387/*
388 * Count fsblocks of the given fork.
389 */
390int
391xfs_bmap_count_blocks(
392 xfs_trans_t *tp,
23aab3f9 393 struct xfs_inode *ip,
2bd0ea18
NS
394 int whichfork,
395 int *count);
396
56b2de80
DC
397int
398xfs_bmap_punch_delalloc_range(
399 struct xfs_inode *ip,
400 xfs_fileoff_t start_fsb,
401 xfs_fileoff_t length);
2bd0ea18
NS
402#endif /* __KERNEL__ */
403
404#endif /* __XFS_BMAP_H__ */