xfs_bmap.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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. /*
  27. * DELTA: describe a change to the in-core extent list.
  28. *
  29. * Internally the use of xed_blockount is somewhat funky.
  30. * xed_blockcount contains an offset much of the time because this
  31. * makes merging changes easier. (xfs_fileoff_t and xfs_filblks_t are
  32. * the same underlying type).
  33. */
  34. typedef struct xfs_extdelta
  35. {
  36. xfs_fileoff_t xed_startoff; /* offset of range */
  37. xfs_filblks_t xed_blockcount; /* blocks in range */
  38. } xfs_extdelta_t;
  39. /*
  40. * List of extents to be free "later".
  41. * The list is kept sorted on xbf_startblock.
  42. */
  43. typedef struct xfs_bmap_free_item
  44. {
  45. xfs_fsblock_t xbfi_startblock;/* starting fs block number */
  46. xfs_extlen_t xbfi_blockcount;/* number of blocks in extent */
  47. struct xfs_bmap_free_item *xbfi_next; /* link to next entry */
  48. } xfs_bmap_free_item_t;
  49. /*
  50. * Header for free extent list.
  51. */
  52. typedef struct xfs_bmap_free
  53. {
  54. xfs_bmap_free_item_t *xbf_first; /* list of to-be-free extents */
  55. int xbf_count; /* count of items on list */
  56. int xbf_low; /* kludge: alloc in low mode */
  57. } xfs_bmap_free_t;
  58. #define XFS_BMAP_MAX_NMAP 4
  59. /*
  60. * Flags for xfs_bmapi
  61. */
  62. #define XFS_BMAPI_WRITE 0x001 /* write operation: allocate space */
  63. #define XFS_BMAPI_DELAY 0x002 /* delayed write operation */
  64. #define XFS_BMAPI_ENTIRE 0x004 /* return entire extent, not trimmed */
  65. #define XFS_BMAPI_METADATA 0x008 /* mapping metadata not user data */
  66. #define XFS_BMAPI_EXACT 0x010 /* allocate only to spec'd bounds */
  67. #define XFS_BMAPI_ATTRFORK 0x020 /* use attribute fork not data */
  68. #define XFS_BMAPI_ASYNC 0x040 /* bunmapi xactions can be async */
  69. #define XFS_BMAPI_RSVBLOCKS 0x080 /* OK to alloc. reserved data blocks */
  70. #define XFS_BMAPI_PREALLOC 0x100 /* preallocation op: unwritten space */
  71. #define XFS_BMAPI_IGSTATE 0x200 /* Ignore state - */
  72. /* combine contig. space */
  73. #define XFS_BMAPI_CONTIG 0x400 /* must allocate only one extent */
  74. /* XFS_BMAPI_DIRECT_IO 0x800 */
  75. #define XFS_BMAPI_CONVERT 0x1000 /* unwritten extent conversion - */
  76. /* need write cache flushing and no */
  77. /* additional allocation alignments */
  78. #define XFS_BMAPI_AFLAG(w) xfs_bmapi_aflag(w)
  79. static inline int xfs_bmapi_aflag(int w)
  80. {
  81. return (w == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0);
  82. }
  83. /*
  84. * Special values for xfs_bmbt_irec_t br_startblock field.
  85. */
  86. #define DELAYSTARTBLOCK ((xfs_fsblock_t)-1LL)
  87. #define HOLESTARTBLOCK ((xfs_fsblock_t)-2LL)
  88. #define XFS_BMAP_INIT(flp,fbp) xfs_bmap_init(flp,fbp)
  89. static inline void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp)
  90. {
  91. ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
  92. (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK);
  93. }
  94. /*
  95. * Argument structure for xfs_bmap_alloc.
  96. */
  97. typedef struct xfs_bmalloca {
  98. xfs_fsblock_t firstblock; /* i/o first block allocated */
  99. xfs_fsblock_t rval; /* starting block of new extent */
  100. xfs_fileoff_t off; /* offset in file filling in */
  101. struct xfs_trans *tp; /* transaction pointer */
  102. struct xfs_inode *ip; /* incore inode pointer */
  103. struct xfs_bmbt_irec *prevp; /* extent before the new one */
  104. struct xfs_bmbt_irec *gotp; /* extent after, or delayed */
  105. xfs_extlen_t alen; /* i/o length asked/allocated */
  106. xfs_extlen_t total; /* total blocks needed for xaction */
  107. xfs_extlen_t minlen; /* mininum allocation size (blocks) */
  108. xfs_extlen_t minleft; /* amount must be left after alloc */
  109. char eof; /* set if allocating past last extent */
  110. char wasdel; /* replacing a delayed allocation */
  111. char userdata;/* set if is user data */
  112. char low; /* low on space, using seq'l ags */
  113. char aeof; /* allocated space at eof */
  114. char conv; /* overwriting unwritten extents */
  115. } xfs_bmalloca_t;
  116. #ifdef __KERNEL__
  117. #if defined(XFS_BMAP_TRACE)
  118. /*
  119. * Trace operations for bmap extent tracing
  120. */
  121. #define XFS_BMAP_KTRACE_DELETE 1
  122. #define XFS_BMAP_KTRACE_INSERT 2
  123. #define XFS_BMAP_KTRACE_PRE_UP 3
  124. #define XFS_BMAP_KTRACE_POST_UP 4
  125. #define XFS_BMAP_TRACE_SIZE 4096 /* size of global trace buffer */
  126. #define XFS_BMAP_KTRACE_SIZE 32 /* size of per-inode trace buffer */
  127. extern ktrace_t *xfs_bmap_trace_buf;
  128. /*
  129. * Add bmap trace insert entries for all the contents of the extent list.
  130. */
  131. void
  132. xfs_bmap_trace_exlist(
  133. const char *fname, /* function name */
  134. struct xfs_inode *ip, /* incore inode pointer */
  135. xfs_extnum_t cnt, /* count of entries in list */
  136. int whichfork); /* data or attr fork */
  137. #define XFS_BMAP_TRACE_EXLIST(ip,c,w) \
  138. xfs_bmap_trace_exlist(__FUNCTION__,ip,c,w)
  139. #else
  140. #define XFS_BMAP_TRACE_EXLIST(ip,c,w)
  141. #endif
  142. /*
  143. * Convert inode from non-attributed to attributed.
  144. * Must not be in a transaction, ip must not be locked.
  145. */
  146. int /* error code */
  147. xfs_bmap_add_attrfork(
  148. struct xfs_inode *ip, /* incore inode pointer */
  149. int size, /* space needed for new attribute */
  150. int rsvd); /* flag for reserved block allocation */
  151. /*
  152. * Add the extent to the list of extents to be free at transaction end.
  153. * The list is maintained sorted (by block number).
  154. */
  155. void
  156. xfs_bmap_add_free(
  157. xfs_fsblock_t bno, /* fs block number of extent */
  158. xfs_filblks_t len, /* length of extent */
  159. xfs_bmap_free_t *flist, /* list of extents */
  160. struct xfs_mount *mp); /* mount point structure */
  161. /*
  162. * Routine to clean up the free list data structure when
  163. * an error occurs during a transaction.
  164. */
  165. void
  166. xfs_bmap_cancel(
  167. xfs_bmap_free_t *flist); /* free list to clean up */
  168. /*
  169. * Compute and fill in the value of the maximum depth of a bmap btree
  170. * in this filesystem. Done once, during mount.
  171. */
  172. void
  173. xfs_bmap_compute_maxlevels(
  174. struct xfs_mount *mp, /* file system mount structure */
  175. int whichfork); /* data or attr fork */
  176. /*
  177. * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
  178. * caller. Frees all the extents that need freeing, which must be done
  179. * last due to locking considerations.
  180. *
  181. * Return 1 if the given transaction was committed and a new one allocated,
  182. * and 0 otherwise.
  183. */
  184. int /* error */
  185. xfs_bmap_finish(
  186. struct xfs_trans **tp, /* transaction pointer addr */
  187. xfs_bmap_free_t *flist, /* i/o: list extents to free */
  188. int *committed); /* xact committed or not */
  189. /*
  190. * Returns the file-relative block number of the first unused block in the file.
  191. * This is the lowest-address hole if the file has holes, else the first block
  192. * past the end of file.
  193. */
  194. int /* error */
  195. xfs_bmap_first_unused(
  196. struct xfs_trans *tp, /* transaction pointer */
  197. struct xfs_inode *ip, /* incore inode */
  198. xfs_extlen_t len, /* size of hole to find */
  199. xfs_fileoff_t *unused, /* unused block num */
  200. int whichfork); /* data or attr fork */
  201. /*
  202. * Returns the file-relative block number of the last block + 1 before
  203. * last_block (input value) in the file.
  204. * This is not based on i_size, it is based on the extent list.
  205. * Returns 0 for local files, as they do not have an extent list.
  206. */
  207. int /* error */
  208. xfs_bmap_last_before(
  209. struct xfs_trans *tp, /* transaction pointer */
  210. struct xfs_inode *ip, /* incore inode */
  211. xfs_fileoff_t *last_block, /* last block */
  212. int whichfork); /* data or attr fork */
  213. /*
  214. * Returns the file-relative block number of the first block past eof in
  215. * the file. This is not based on i_size, it is based on the extent list.
  216. * Returns 0 for local files, as they do not have an extent list.
  217. */
  218. int /* error */
  219. xfs_bmap_last_offset(
  220. struct xfs_trans *tp, /* transaction pointer */
  221. struct xfs_inode *ip, /* incore inode */
  222. xfs_fileoff_t *unused, /* last block num */
  223. int whichfork); /* data or attr fork */
  224. /*
  225. * Returns whether the selected fork of the inode has exactly one
  226. * block or not. For the data fork we check this matches di_size,
  227. * implying the file's range is 0..bsize-1.
  228. */
  229. int
  230. xfs_bmap_one_block(
  231. struct xfs_inode *ip, /* incore inode */
  232. int whichfork); /* data or attr fork */
  233. /*
  234. * Read in the extents to iu_extents.
  235. * All inode fields are set up by caller, we just traverse the btree
  236. * and copy the records in.
  237. */
  238. int /* error */
  239. xfs_bmap_read_extents(
  240. struct xfs_trans *tp, /* transaction pointer */
  241. struct xfs_inode *ip, /* incore inode */
  242. int whichfork); /* data or attr fork */
  243. /*
  244. * Map file blocks to filesystem blocks.
  245. * File range is given by the bno/len pair.
  246. * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
  247. * into a hole or past eof.
  248. * Only allocates blocks from a single allocation group,
  249. * to avoid locking problems.
  250. * The returned value in "firstblock" from the first call in a transaction
  251. * must be remembered and presented to subsequent calls in "firstblock".
  252. * An upper bound for the number of blocks to be allocated is supplied to
  253. * the first call in "total"; if no allocation group has that many free
  254. * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
  255. */
  256. int /* error */
  257. xfs_bmapi(
  258. struct xfs_trans *tp, /* transaction pointer */
  259. struct xfs_inode *ip, /* incore inode */
  260. xfs_fileoff_t bno, /* starting file offs. mapped */
  261. xfs_filblks_t len, /* length to map in file */
  262. int flags, /* XFS_BMAPI_... */
  263. xfs_fsblock_t *firstblock, /* first allocated block
  264. controls a.g. for allocs */
  265. xfs_extlen_t total, /* total blocks needed */
  266. struct xfs_bmbt_irec *mval, /* output: map values */
  267. int *nmap, /* i/o: mval size/count */
  268. xfs_bmap_free_t *flist, /* i/o: list extents to free */
  269. xfs_extdelta_t *delta); /* o: change made to incore
  270. extents */
  271. /*
  272. * Map file blocks to filesystem blocks, simple version.
  273. * One block only, read-only.
  274. * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
  275. * For the other flag values, the effect is as if XFS_BMAPI_METADATA
  276. * was set and all the others were clear.
  277. */
  278. int /* error */
  279. xfs_bmapi_single(
  280. struct xfs_trans *tp, /* transaction pointer */
  281. struct xfs_inode *ip, /* incore inode */
  282. int whichfork, /* data or attr fork */
  283. xfs_fsblock_t *fsb, /* output: mapped block */
  284. xfs_fileoff_t bno); /* starting file offs. mapped */
  285. /*
  286. * 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. */
  291. int /* error */
  292. xfs_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. xfs_extdelta_t *delta, /* o: change made to incore
  303. extents */
  304. int *done); /* set if not done yet */
  305. /*
  306. * Fcntl interface to xfs_bmapi.
  307. */
  308. int /* error code */
  309. xfs_getbmap(
  310. xfs_inode_t *ip,
  311. struct getbmap *bmv, /* user bmap structure */
  312. void __user *ap, /* pointer to user's array */
  313. int iflags); /* interface flags */
  314. /*
  315. * Check if the endoff is outside the last extent. If so the caller will grow
  316. * the allocation to a stripe unit boundary
  317. */
  318. int
  319. xfs_bmap_eof(
  320. struct xfs_inode *ip,
  321. xfs_fileoff_t endoff,
  322. int whichfork,
  323. int *eof);
  324. /*
  325. * Count fsblocks of the given fork.
  326. */
  327. int
  328. xfs_bmap_count_blocks(
  329. xfs_trans_t *tp,
  330. struct xfs_inode *ip,
  331. int whichfork,
  332. int *count);
  333. /*
  334. * Check an extent list, which has just been read, for
  335. * any bit in the extent flag field.
  336. */
  337. int
  338. xfs_check_nostate_extents(
  339. struct xfs_ifork *ifp,
  340. xfs_extnum_t idx,
  341. xfs_extnum_t num);
  342. /*
  343. * Search the extent records for the entry containing block bno.
  344. * If bno lies in a hole, point to the next entry. If bno lies
  345. * past eof, *eofp will be set, and *prevp will contain the last
  346. * entry (null if none). Else, *lastxp will be set to the index
  347. * of the found entry; *gotp will contain the entry.
  348. */
  349. xfs_bmbt_rec_host_t *
  350. xfs_bmap_search_multi_extents(struct xfs_ifork *, xfs_fileoff_t, int *,
  351. xfs_extnum_t *, xfs_bmbt_irec_t *, xfs_bmbt_irec_t *);
  352. #endif /* __KERNEL__ */
  353. #endif /* __XFS_BMAP_H__ */