xfs_bmap.h 13 KB

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