blob: 243e212b31f6b77eb3251238139d607b612bb175 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_BMAP_H__
19#define __XFS_BMAP_H__
20
21struct getbmap;
22struct xfs_bmbt_irec;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +110023struct xfs_ifork;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024struct xfs_inode;
25struct xfs_mount;
26struct xfs_trans;
27
David Chinnera8272ce2007-11-23 16:28:09 +110028extern kmem_zone_t *xfs_bmap_free_item_zone;
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
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.
Lachlan McIlroyb877e3d2008-06-27 13:33:03 +100043 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
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 */
Lachlan McIlroyb877e3d2008-06-27 13:33:03 +100059 int xbf_low; /* alloc in low mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070060} xfs_bmap_free_t;
61
62#define XFS_BMAP_MAX_NMAP 4
63
64/*
Dave Chinnerc0dc7822011-09-18 20:40:52 +000065 * Flags for xfs_bmapi_*
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +000067#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 - */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /* combine contig. space */
Dave Chinnerc0dc7822011-09-18 20:40:52 +000073#define XFS_BMAPI_CONTIG 0x020 /* must allocate only one extent */
Dave Chinner44722352010-08-24 12:02:11 +100074/*
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 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +000079#define XFS_BMAPI_CONVERT 0x040
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000081#define XFS_BMAPI_FLAGS \
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000082 { XFS_BMAPI_ENTIRE, "ENTIRE" }, \
83 { XFS_BMAPI_METADATA, "METADATA" }, \
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000084 { XFS_BMAPI_ATTRFORK, "ATTRFORK" }, \
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000085 { XFS_BMAPI_PREALLOC, "PREALLOC" }, \
86 { XFS_BMAPI_IGSTATE, "IGSTATE" }, \
87 { XFS_BMAPI_CONTIG, "CONTIG" }, \
88 { XFS_BMAPI_CONVERT, "CONVERT" }
89
90
Nathan Scotta844f452005-11-02 14:38:42 +110091static inline int xfs_bmapi_aflag(int w)
92{
93 return (w == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0);
94}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
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
Nathan Scotta844f452005-11-02 14:38:42 +1100102static inline void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp)
103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
Nathan Scotta844f452005-11-02 14:38:42 +1100105 (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK);
106}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108/*
109 * Argument structure for xfs_bmap_alloc.
110 */
111typedef struct xfs_bmalloca {
Dave Chinner0937e0f2011-09-18 20:40:57 +0000112 xfs_fsblock_t *firstblock; /* i/o first block allocated */
113 struct xfs_bmap_free *flist; /* bmap freelist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct xfs_trans *tp; /* transaction pointer */
115 struct xfs_inode *ip; /* incore inode pointer */
Dave Chinnerbaf41a52011-09-18 20:40:56 +0000116 struct xfs_bmbt_irec prev; /* extent before the new one */
117 struct xfs_bmbt_irec got; /* extent after, or delayed */
Dave Chinner3a756672011-09-18 20:40:58 +0000118
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
Dave Chinner29c8d172011-09-18 20:41:00 +0000123 struct xfs_btree_cur *cur; /* btree cursor */
Dave Chinnere0c3da52011-09-18 20:41:01 +0000124 xfs_extnum_t idx; /* current extent index */
125 int nallocs;/* number of extents alloc'd */
Christoph Hellwigc315c902011-09-18 20:41:02 +0000126 int logflags;/* flags for transaction logging */
Dave Chinner29c8d172011-09-18 20:41:00 +0000127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 xfs_extlen_t total; /* total blocks needed for xaction */
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200129 xfs_extlen_t minlen; /* minimum allocation size (blocks) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 xfs_extlen_t minleft; /* amount must be left after alloc */
131 char eof; /* set if allocating past last extent */
132 char wasdel; /* replacing a delayed allocation */
133 char userdata;/* set if is user data */
Nathan Scottdd9f4382006-01-11 15:28:28 +1100134 char aeof; /* allocated space at eof */
135 char conv; /* overwriting unwritten extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136} xfs_bmalloca_t;
137
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000138/*
139 * Flags for xfs_bmap_add_extent*.
140 */
141#define BMAP_LEFT_CONTIG (1 << 0)
142#define BMAP_RIGHT_CONTIG (1 << 1)
143#define BMAP_LEFT_FILLING (1 << 2)
144#define BMAP_RIGHT_FILLING (1 << 3)
145#define BMAP_LEFT_DELAY (1 << 4)
146#define BMAP_RIGHT_DELAY (1 << 5)
147#define BMAP_LEFT_VALID (1 << 6)
148#define BMAP_RIGHT_VALID (1 << 7)
Christoph Hellwig6ef35542009-11-25 00:00:21 +0000149#define BMAP_ATTRFORK (1 << 8)
Christoph Hellwig7574aa92009-11-25 00:00:19 +0000150
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000151#define XFS_BMAP_EXT_FLAGS \
152 { BMAP_LEFT_CONTIG, "LC" }, \
153 { BMAP_RIGHT_CONTIG, "RC" }, \
154 { BMAP_LEFT_FILLING, "LF" }, \
155 { BMAP_RIGHT_FILLING, "RF" }, \
156 { BMAP_ATTRFORK, "ATTR" }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/*
159 * Add bmap trace insert entries for all the contents of the extent list.
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000160 *
161 * Quite excessive tracing. Only do this for debug builds.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000163#if defined(__KERNEL) && defined(DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164void
165xfs_bmap_trace_exlist(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct xfs_inode *ip, /* incore inode pointer */
167 xfs_extnum_t cnt, /* count of entries in list */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000168 int whichfork,
169 unsigned long caller_ip); /* data or attr fork */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000170#define XFS_BMAP_TRACE_EXLIST(ip,c,w) \
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000171 xfs_bmap_trace_exlist(ip,c,w, _THIS_IP_)
172#else
Eric Sandeen3a59c942007-07-11 11:09:47 +1000173#define XFS_BMAP_TRACE_EXLIST(ip,c,w)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176/*
177 * Convert inode from non-attributed to attributed.
178 * Must not be in a transaction, ip must not be locked.
179 */
180int /* error code */
181xfs_bmap_add_attrfork(
182 struct xfs_inode *ip, /* incore inode pointer */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100183 int size, /* space needed for new attribute */
184 int rsvd); /* flag for reserved block allocation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186/*
187 * Add the extent to the list of extents to be free at transaction end.
188 * The list is maintained sorted (by block number).
189 */
190void
191xfs_bmap_add_free(
192 xfs_fsblock_t bno, /* fs block number of extent */
193 xfs_filblks_t len, /* length of extent */
194 xfs_bmap_free_t *flist, /* list of extents */
195 struct xfs_mount *mp); /* mount point structure */
196
197/*
198 * Routine to clean up the free list data structure when
199 * an error occurs during a transaction.
200 */
201void
202xfs_bmap_cancel(
203 xfs_bmap_free_t *flist); /* free list to clean up */
204
205/*
206 * Compute and fill in the value of the maximum depth of a bmap btree
207 * in this filesystem. Done once, during mount.
208 */
209void
210xfs_bmap_compute_maxlevels(
211 struct xfs_mount *mp, /* file system mount structure */
212 int whichfork); /* data or attr fork */
213
214/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 * Returns the file-relative block number of the first unused block in the file.
216 * This is the lowest-address hole if the file has holes, else the first block
217 * past the end of file.
218 */
219int /* error */
220xfs_bmap_first_unused(
221 struct xfs_trans *tp, /* transaction pointer */
222 struct xfs_inode *ip, /* incore inode */
223 xfs_extlen_t len, /* size of hole to find */
224 xfs_fileoff_t *unused, /* unused block num */
225 int whichfork); /* data or attr fork */
226
227/*
228 * Returns the file-relative block number of the last block + 1 before
229 * last_block (input value) in the file.
230 * This is not based on i_size, it is based on the extent list.
231 * Returns 0 for local files, as they do not have an extent list.
232 */
233int /* error */
234xfs_bmap_last_before(
235 struct xfs_trans *tp, /* transaction pointer */
236 struct xfs_inode *ip, /* incore inode */
237 xfs_fileoff_t *last_block, /* last block */
238 int whichfork); /* data or attr fork */
239
240/*
241 * Returns the file-relative block number of the first block past eof in
242 * the file. This is not based on i_size, it is based on the extent list.
243 * Returns 0 for local files, as they do not have an extent list.
244 */
245int /* error */
246xfs_bmap_last_offset(
247 struct xfs_trans *tp, /* transaction pointer */
248 struct xfs_inode *ip, /* incore inode */
249 xfs_fileoff_t *unused, /* last block num */
250 int whichfork); /* data or attr fork */
251
252/*
253 * Returns whether the selected fork of the inode has exactly one
254 * block or not. For the data fork we check this matches di_size,
255 * implying the file's range is 0..bsize-1.
256 */
257int
258xfs_bmap_one_block(
259 struct xfs_inode *ip, /* incore inode */
260 int whichfork); /* data or attr fork */
261
262/*
263 * Read in the extents to iu_extents.
264 * All inode fields are set up by caller, we just traverse the btree
265 * and copy the records in.
266 */
267int /* error */
268xfs_bmap_read_extents(
269 struct xfs_trans *tp, /* transaction pointer */
270 struct xfs_inode *ip, /* incore inode */
271 int whichfork); /* data or attr fork */
272
Dave Chinner5c8ed202011-09-18 20:40:45 +0000273int xfs_bmapi_read(struct xfs_inode *ip, xfs_fileoff_t bno,
274 xfs_filblks_t len, struct xfs_bmbt_irec *mval,
275 int *nmap, int flags);
Christoph Hellwig44032802011-09-18 20:40:48 +0000276int xfs_bmapi_delay(struct xfs_inode *ip, xfs_fileoff_t bno,
277 xfs_filblks_t len, struct xfs_bmbt_irec *mval,
278 int *nmap, int flags);
Dave Chinnerc0dc7822011-09-18 20:40:52 +0000279int xfs_bmapi_write(struct xfs_trans *tp, struct xfs_inode *ip,
280 xfs_fileoff_t bno, xfs_filblks_t len, int flags,
281 xfs_fsblock_t *firstblock, xfs_extlen_t total,
282 struct xfs_bmbt_irec *mval, int *nmap,
283 struct xfs_bmap_free *flist);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * Unmap (remove) blocks from a file.
287 * If nexts is nonzero then the number of extents to remove is limited to
288 * that value. If not all extents in the block range can be removed then
289 * *done is set.
290 */
291int /* error */
292xfs_bunmapi(
293 struct xfs_trans *tp, /* transaction pointer */
294 struct xfs_inode *ip, /* incore inode */
295 xfs_fileoff_t bno, /* starting offset to unmap */
296 xfs_filblks_t len, /* length to unmap in file */
297 int flags, /* XFS_BMAPI_... */
298 xfs_extnum_t nexts, /* number of extents max */
299 xfs_fsblock_t *firstblock, /* first allocated block
300 controls a.g. for allocs */
301 xfs_bmap_free_t *flist, /* i/o: list extents to free */
302 int *done); /* set if not done yet */
303
304/*
Barry Naujok847fff52008-10-30 17:05:38 +1100305 * Check an extent list, which has just been read, for
306 * any bit in the extent flag field.
307 */
308int
309xfs_check_nostate_extents(
310 struct xfs_ifork *ifp,
311 xfs_extnum_t idx,
312 xfs_extnum_t num);
313
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200314uint
315xfs_default_attroffset(
316 struct xfs_inode *ip);
317
Barry Naujok847fff52008-10-30 17:05:38 +1100318#ifdef __KERNEL__
319
320/*
321 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
322 * caller. Frees all the extents that need freeing, which must be done
323 * last due to locking considerations.
324 *
325 * Return 1 if the given transaction was committed and a new one allocated,
326 * and 0 otherwise.
327 */
328int /* error */
329xfs_bmap_finish(
330 struct xfs_trans **tp, /* transaction pointer addr */
331 xfs_bmap_free_t *flist, /* i/o: list extents to free */
332 int *committed); /* xact committed or not */
333
Eric Sandeen8a7141a2008-11-28 14:23:35 +1100334/* bmap to userspace formatter - copy to user & advance pointer */
335typedef int (*xfs_bmap_format_t)(void **, struct getbmapx *, int *);
336
Barry Naujok847fff52008-10-30 17:05:38 +1100337/*
Eric Sandeen8a7141a2008-11-28 14:23:35 +1100338 * Get inode's extents as described in bmv, and format for output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
340int /* error code */
341xfs_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000342 xfs_inode_t *ip,
Eric Sandeen8a7141a2008-11-28 14:23:35 +1100343 struct getbmapx *bmv, /* user bmap structure */
344 xfs_bmap_format_t formatter, /* format to user */
345 void *arg); /* formatter arg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * Check if the endoff is outside the last extent. If so the caller will grow
349 * the allocation to a stripe unit boundary
350 */
351int
352xfs_bmap_eof(
353 struct xfs_inode *ip,
354 xfs_fileoff_t endoff,
355 int whichfork,
356 int *eof);
357
358/*
359 * Count fsblocks of the given fork.
360 */
361int
362xfs_bmap_count_blocks(
363 xfs_trans_t *tp,
364 struct xfs_inode *ip,
365 int whichfork,
366 int *count);
367
Dave Chinnerc726de42010-11-30 15:14:39 +1100368int
369xfs_bmap_punch_delalloc_range(
370 struct xfs_inode *ip,
371 xfs_fileoff_t start_fsb,
372 xfs_fileoff_t length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#endif /* __KERNEL__ */
374
375#endif /* __XFS_BMAP_H__ */