xfs_bmap.h 14 KB

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