blob: 3e84e8e8d79e6b72a7b782bf1884fff706a19b47 [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/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +100031 * DELTA: describe a change to the in-core extent list.
32 *
33 * Internally the use of xed_blockount is somewhat funky.
34 * xed_blockcount contains an offset much of the time because this
35 * makes merging changes easier. (xfs_fileoff_t and xfs_filblks_t are
36 * the same underlying type).
37 */
38typedef struct xfs_extdelta
39{
40 xfs_fileoff_t xed_startoff; /* offset of range */
41 xfs_filblks_t xed_blockcount; /* blocks in range */
42} xfs_extdelta_t;
43
44/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * List of extents to be free "later".
46 * The list is kept sorted on xbf_startblock.
47 */
48typedef struct xfs_bmap_free_item
49{
50 xfs_fsblock_t xbfi_startblock;/* starting fs block number */
51 xfs_extlen_t xbfi_blockcount;/* number of blocks in extent */
52 struct xfs_bmap_free_item *xbfi_next; /* link to next entry */
53} xfs_bmap_free_item_t;
54
55/*
56 * Header for free extent list.
Lachlan McIlroyb877e3d2008-06-27 13:33:03 +100057 *
58 * xbf_low is used by the allocator to activate the lowspace algorithm -
59 * when free space is running low the extent allocator may choose to
60 * allocate an extent from an AG without leaving sufficient space for
61 * a btree split when inserting the new extent. In this case the allocator
62 * will enable the lowspace algorithm which is supposed to allow further
63 * allocations (such as btree splits and newroots) to allocate from
64 * sequential AGs. In order to avoid locking AGs out of order the lowspace
65 * algorithm will start searching for free space from AG 0. If the correct
66 * transaction reservations have been made then this algorithm will eventually
67 * find all the space it needs.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69typedef struct xfs_bmap_free
70{
71 xfs_bmap_free_item_t *xbf_first; /* list of to-be-free extents */
72 int xbf_count; /* count of items on list */
Lachlan McIlroyb877e3d2008-06-27 13:33:03 +100073 int xbf_low; /* alloc in low mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074} xfs_bmap_free_t;
75
76#define XFS_BMAP_MAX_NMAP 4
77
78/*
79 * Flags for xfs_bmapi
80 */
81#define XFS_BMAPI_WRITE 0x001 /* write operation: allocate space */
82#define XFS_BMAPI_DELAY 0x002 /* delayed write operation */
83#define XFS_BMAPI_ENTIRE 0x004 /* return entire extent, not trimmed */
84#define XFS_BMAPI_METADATA 0x008 /* mapping metadata not user data */
85#define XFS_BMAPI_EXACT 0x010 /* allocate only to spec'd bounds */
86#define XFS_BMAPI_ATTRFORK 0x020 /* use attribute fork not data */
87#define XFS_BMAPI_ASYNC 0x040 /* bunmapi xactions can be async */
88#define XFS_BMAPI_RSVBLOCKS 0x080 /* OK to alloc. reserved data blocks */
89#define XFS_BMAPI_PREALLOC 0x100 /* preallocation op: unwritten space */
90#define XFS_BMAPI_IGSTATE 0x200 /* Ignore state - */
91 /* combine contig. space */
92#define XFS_BMAPI_CONTIG 0x400 /* must allocate only one extent */
Nathan Scottdd9f4382006-01-11 15:28:28 +110093/* XFS_BMAPI_DIRECT_IO 0x800 */
94#define XFS_BMAPI_CONVERT 0x1000 /* unwritten extent conversion - */
95 /* need write cache flushing and no */
96 /* additional allocation alignments */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Nathan Scotta844f452005-11-02 14:38:42 +110098static inline int xfs_bmapi_aflag(int w)
99{
100 return (w == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0);
101}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/*
104 * Special values for xfs_bmbt_irec_t br_startblock field.
105 */
106#define DELAYSTARTBLOCK ((xfs_fsblock_t)-1LL)
107#define HOLESTARTBLOCK ((xfs_fsblock_t)-2LL)
108
Nathan Scotta844f452005-11-02 14:38:42 +1100109static inline void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp)
110{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
Nathan Scotta844f452005-11-02 14:38:42 +1100112 (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK);
113}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/*
116 * Argument structure for xfs_bmap_alloc.
117 */
118typedef struct xfs_bmalloca {
119 xfs_fsblock_t firstblock; /* i/o first block allocated */
120 xfs_fsblock_t rval; /* starting block of new extent */
121 xfs_fileoff_t off; /* offset in file filling in */
122 struct xfs_trans *tp; /* transaction pointer */
123 struct xfs_inode *ip; /* incore inode pointer */
124 struct xfs_bmbt_irec *prevp; /* extent before the new one */
125 struct xfs_bmbt_irec *gotp; /* extent after, or delayed */
126 xfs_extlen_t alen; /* i/o length asked/allocated */
127 xfs_extlen_t total; /* total blocks needed for xaction */
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200128 xfs_extlen_t minlen; /* minimum allocation size (blocks) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 xfs_extlen_t minleft; /* amount must be left after alloc */
130 char eof; /* set if allocating past last extent */
131 char wasdel; /* replacing a delayed allocation */
132 char userdata;/* set if is user data */
133 char low; /* low on space, using seq'l ags */
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
Barry Naujok847fff52008-10-30 17:05:38 +1100151#if defined(__KERNEL__) && defined(XFS_BMAP_TRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * Trace operations for bmap extent tracing
154 */
155#define XFS_BMAP_KTRACE_DELETE 1
156#define XFS_BMAP_KTRACE_INSERT 2
157#define XFS_BMAP_KTRACE_PRE_UP 3
158#define XFS_BMAP_KTRACE_POST_UP 4
159
160#define XFS_BMAP_TRACE_SIZE 4096 /* size of global trace buffer */
161#define XFS_BMAP_KTRACE_SIZE 32 /* size of per-inode trace buffer */
162extern ktrace_t *xfs_bmap_trace_buf;
163
164/*
165 * Add bmap trace insert entries for all the contents of the extent list.
166 */
167void
168xfs_bmap_trace_exlist(
Eric Sandeen3a59c942007-07-11 11:09:47 +1000169 const char *fname, /* function name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct xfs_inode *ip, /* incore inode pointer */
171 xfs_extnum_t cnt, /* count of entries in list */
172 int whichfork); /* data or attr fork */
Eric Sandeen3a59c942007-07-11 11:09:47 +1000173#define XFS_BMAP_TRACE_EXLIST(ip,c,w) \
Harvey Harrison34a622b2008-04-10 12:19:21 +1000174 xfs_bmap_trace_exlist(__func__,ip,c,w)
Barry Naujok847fff52008-10-30 17:05:38 +1100175
176#else /* __KERNEL__ && XFS_BMAP_TRACE */
177
Eric Sandeen3a59c942007-07-11 11:09:47 +1000178#define XFS_BMAP_TRACE_EXLIST(ip,c,w)
Barry Naujok847fff52008-10-30 17:05:38 +1100179
180#endif /* __KERNEL__ && XFS_BMAP_TRACE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182/*
183 * Convert inode from non-attributed to attributed.
184 * Must not be in a transaction, ip must not be locked.
185 */
186int /* error code */
187xfs_bmap_add_attrfork(
188 struct xfs_inode *ip, /* incore inode pointer */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100189 int size, /* space needed for new attribute */
190 int rsvd); /* flag for reserved block allocation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/*
193 * Add the extent to the list of extents to be free at transaction end.
194 * The list is maintained sorted (by block number).
195 */
196void
197xfs_bmap_add_free(
198 xfs_fsblock_t bno, /* fs block number of extent */
199 xfs_filblks_t len, /* length of extent */
200 xfs_bmap_free_t *flist, /* list of extents */
201 struct xfs_mount *mp); /* mount point structure */
202
203/*
204 * Routine to clean up the free list data structure when
205 * an error occurs during a transaction.
206 */
207void
208xfs_bmap_cancel(
209 xfs_bmap_free_t *flist); /* free list to clean up */
210
211/*
212 * Compute and fill in the value of the maximum depth of a bmap btree
213 * in this filesystem. Done once, during mount.
214 */
215void
216xfs_bmap_compute_maxlevels(
217 struct xfs_mount *mp, /* file system mount structure */
218 int whichfork); /* data or attr fork */
219
220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * Returns the file-relative block number of the first unused block in the file.
222 * This is the lowest-address hole if the file has holes, else the first block
223 * past the end of file.
224 */
225int /* error */
226xfs_bmap_first_unused(
227 struct xfs_trans *tp, /* transaction pointer */
228 struct xfs_inode *ip, /* incore inode */
229 xfs_extlen_t len, /* size of hole to find */
230 xfs_fileoff_t *unused, /* unused block num */
231 int whichfork); /* data or attr fork */
232
233/*
234 * Returns the file-relative block number of the last block + 1 before
235 * last_block (input value) in the file.
236 * This is not based on i_size, it is based on the extent list.
237 * Returns 0 for local files, as they do not have an extent list.
238 */
239int /* error */
240xfs_bmap_last_before(
241 struct xfs_trans *tp, /* transaction pointer */
242 struct xfs_inode *ip, /* incore inode */
243 xfs_fileoff_t *last_block, /* last block */
244 int whichfork); /* data or attr fork */
245
246/*
247 * Returns the file-relative block number of the first block past eof in
248 * the file. This is not based on i_size, it is based on the extent list.
249 * Returns 0 for local files, as they do not have an extent list.
250 */
251int /* error */
252xfs_bmap_last_offset(
253 struct xfs_trans *tp, /* transaction pointer */
254 struct xfs_inode *ip, /* incore inode */
255 xfs_fileoff_t *unused, /* last block num */
256 int whichfork); /* data or attr fork */
257
258/*
259 * Returns whether the selected fork of the inode has exactly one
260 * block or not. For the data fork we check this matches di_size,
261 * implying the file's range is 0..bsize-1.
262 */
263int
264xfs_bmap_one_block(
265 struct xfs_inode *ip, /* incore inode */
266 int whichfork); /* data or attr fork */
267
268/*
269 * Read in the extents to iu_extents.
270 * All inode fields are set up by caller, we just traverse the btree
271 * and copy the records in.
272 */
273int /* error */
274xfs_bmap_read_extents(
275 struct xfs_trans *tp, /* transaction pointer */
276 struct xfs_inode *ip, /* incore inode */
277 int whichfork); /* data or attr fork */
278
279/*
280 * Map file blocks to filesystem blocks.
281 * File range is given by the bno/len pair.
282 * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
283 * into a hole or past eof.
284 * Only allocates blocks from a single allocation group,
285 * to avoid locking problems.
286 * The returned value in "firstblock" from the first call in a transaction
287 * must be remembered and presented to subsequent calls in "firstblock".
288 * An upper bound for the number of blocks to be allocated is supplied to
289 * the first call in "total"; if no allocation group has that many free
290 * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
291 */
292int /* error */
293xfs_bmapi(
294 struct xfs_trans *tp, /* transaction pointer */
295 struct xfs_inode *ip, /* incore inode */
296 xfs_fileoff_t bno, /* starting file offs. mapped */
297 xfs_filblks_t len, /* length to map in file */
298 int flags, /* XFS_BMAPI_... */
299 xfs_fsblock_t *firstblock, /* first allocated block
300 controls a.g. for allocs */
301 xfs_extlen_t total, /* total blocks needed */
302 struct xfs_bmbt_irec *mval, /* output: map values */
303 int *nmap, /* i/o: mval size/count */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000304 xfs_bmap_free_t *flist, /* i/o: list extents to free */
305 xfs_extdelta_t *delta); /* o: change made to incore
306 extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308/*
309 * Map file blocks to filesystem blocks, simple version.
310 * One block only, read-only.
311 * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
312 * For the other flag values, the effect is as if XFS_BMAPI_METADATA
313 * was set and all the others were clear.
314 */
315int /* error */
316xfs_bmapi_single(
317 struct xfs_trans *tp, /* transaction pointer */
318 struct xfs_inode *ip, /* incore inode */
319 int whichfork, /* data or attr fork */
320 xfs_fsblock_t *fsb, /* output: mapped block */
321 xfs_fileoff_t bno); /* starting file offs. mapped */
322
323/*
324 * Unmap (remove) blocks from a file.
325 * If nexts is nonzero then the number of extents to remove is limited to
326 * that value. If not all extents in the block range can be removed then
327 * *done is set.
328 */
329int /* error */
330xfs_bunmapi(
331 struct xfs_trans *tp, /* transaction pointer */
332 struct xfs_inode *ip, /* incore inode */
333 xfs_fileoff_t bno, /* starting offset to unmap */
334 xfs_filblks_t len, /* length to unmap in file */
335 int flags, /* XFS_BMAPI_... */
336 xfs_extnum_t nexts, /* number of extents max */
337 xfs_fsblock_t *firstblock, /* first allocated block
338 controls a.g. for allocs */
339 xfs_bmap_free_t *flist, /* i/o: list extents to free */
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000340 xfs_extdelta_t *delta, /* o: change made to incore
341 extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 int *done); /* set if not done yet */
343
344/*
Barry Naujok847fff52008-10-30 17:05:38 +1100345 * Check an extent list, which has just been read, for
346 * any bit in the extent flag field.
347 */
348int
349xfs_check_nostate_extents(
350 struct xfs_ifork *ifp,
351 xfs_extnum_t idx,
352 xfs_extnum_t num);
353
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200354uint
355xfs_default_attroffset(
356 struct xfs_inode *ip);
357
Barry Naujok847fff52008-10-30 17:05:38 +1100358#ifdef __KERNEL__
359
360/*
361 * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
362 * caller. Frees all the extents that need freeing, which must be done
363 * last due to locking considerations.
364 *
365 * Return 1 if the given transaction was committed and a new one allocated,
366 * and 0 otherwise.
367 */
368int /* error */
369xfs_bmap_finish(
370 struct xfs_trans **tp, /* transaction pointer addr */
371 xfs_bmap_free_t *flist, /* i/o: list extents to free */
372 int *committed); /* xact committed or not */
373
Eric Sandeen8a7141a2008-11-28 14:23:35 +1100374/* bmap to userspace formatter - copy to user & advance pointer */
375typedef int (*xfs_bmap_format_t)(void **, struct getbmapx *, int *);
376
Barry Naujok847fff52008-10-30 17:05:38 +1100377/*
Eric Sandeen8a7141a2008-11-28 14:23:35 +1100378 * Get inode's extents as described in bmv, and format for output.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
380int /* error code */
381xfs_getbmap(
Christoph Hellwig993386c2007-08-28 16:12:30 +1000382 xfs_inode_t *ip,
Eric Sandeen8a7141a2008-11-28 14:23:35 +1100383 struct getbmapx *bmv, /* user bmap structure */
384 xfs_bmap_format_t formatter, /* format to user */
385 void *arg); /* formatter arg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 * Check if the endoff is outside the last extent. If so the caller will grow
389 * the allocation to a stripe unit boundary
390 */
391int
392xfs_bmap_eof(
393 struct xfs_inode *ip,
394 xfs_fileoff_t endoff,
395 int whichfork,
396 int *eof);
397
398/*
399 * Count fsblocks of the given fork.
400 */
401int
402xfs_bmap_count_blocks(
403 xfs_trans_t *tp,
404 struct xfs_inode *ip,
405 int whichfork,
406 int *count);
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#endif /* __KERNEL__ */
409
410#endif /* __XFS_BMAP_H__ */