xfs_bmap.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. /*
  2. * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of version 2 of the GNU General Public License as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it would be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. *
  12. * Further, this software is distributed without any warranty that it is
  13. * free of the rightful claim of any third person regarding infringement
  14. * or the like. Any license provided herein, whether implied or
  15. * otherwise, applies only to this software file. Patent licenses, if
  16. * any, provided herein do not apply to combinations of this program with
  17. * other software, or any other product whatsoever.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write the Free Software Foundation, Inc., 59
  21. * Temple Place - Suite 330, Boston MA 02111-1307, USA.
  22. *
  23. * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
  24. * Mountain View, CA 94043, or:
  25. *
  26. * http://www.sgi.com
  27. *
  28. * For further information regarding this notice, see:
  29. *
  30. * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
  31. */
  32. #ifndef __XFS_BMAP_H__
  33. #define __XFS_BMAP_H__
  34. struct getbmap;
  35. struct xfs_bmbt_irec;
  36. struct xfs_inode;
  37. struct xfs_mount;
  38. struct xfs_trans;
  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. #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_BMAPI_AFLAG)
  75. int xfs_bmapi_aflag(int w);
  76. #define XFS_BMAPI_AFLAG(w) xfs_bmapi_aflag(w)
  77. #else
  78. #define XFS_BMAPI_AFLAG(w) ((w) == XFS_ATTR_FORK ? XFS_BMAPI_ATTRFORK : 0)
  79. #endif
  80. /*
  81. * Special values for xfs_bmbt_irec_t br_startblock field.
  82. */
  83. #define DELAYSTARTBLOCK ((xfs_fsblock_t)-1LL)
  84. #define HOLESTARTBLOCK ((xfs_fsblock_t)-2LL)
  85. #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_BMAP_INIT)
  86. void xfs_bmap_init(xfs_bmap_free_t *flp, xfs_fsblock_t *fbp);
  87. #define XFS_BMAP_INIT(flp,fbp) xfs_bmap_init(flp,fbp)
  88. #else
  89. #define XFS_BMAP_INIT(flp,fbp) \
  90. ((flp)->xbf_first = NULL, (flp)->xbf_count = 0, \
  91. (flp)->xbf_low = 0, *(fbp) = NULLFSBLOCK)
  92. #endif
  93. /*
  94. * Argument structure for xfs_bmap_alloc.
  95. */
  96. typedef struct xfs_bmalloca {
  97. xfs_fsblock_t firstblock; /* i/o first block allocated */
  98. xfs_fsblock_t rval; /* starting block of new extent */
  99. xfs_fileoff_t off; /* offset in file filling in */
  100. struct xfs_trans *tp; /* transaction pointer */
  101. struct xfs_inode *ip; /* incore inode pointer */
  102. struct xfs_bmbt_irec *prevp; /* extent before the new one */
  103. struct xfs_bmbt_irec *gotp; /* extent after, or delayed */
  104. xfs_extlen_t alen; /* i/o length asked/allocated */
  105. xfs_extlen_t total; /* total blocks needed for xaction */
  106. xfs_extlen_t minlen; /* mininum allocation size (blocks) */
  107. xfs_extlen_t minleft; /* amount must be left after alloc */
  108. char eof; /* set if allocating past last extent */
  109. char wasdel; /* replacing a delayed allocation */
  110. char userdata;/* set if is user data */
  111. char low; /* low on space, using seq'l ags */
  112. char aeof; /* allocated space at eof */
  113. } xfs_bmalloca_t;
  114. #ifdef __KERNEL__
  115. #if defined(XFS_BMAP_TRACE)
  116. /*
  117. * Trace operations for bmap extent tracing
  118. */
  119. #define XFS_BMAP_KTRACE_DELETE 1
  120. #define XFS_BMAP_KTRACE_INSERT 2
  121. #define XFS_BMAP_KTRACE_PRE_UP 3
  122. #define XFS_BMAP_KTRACE_POST_UP 4
  123. #define XFS_BMAP_TRACE_SIZE 4096 /* size of global trace buffer */
  124. #define XFS_BMAP_KTRACE_SIZE 32 /* size of per-inode trace buffer */
  125. extern ktrace_t *xfs_bmap_trace_buf;
  126. /*
  127. * Add bmap trace insert entries for all the contents of the extent list.
  128. */
  129. void
  130. xfs_bmap_trace_exlist(
  131. char *fname, /* function name */
  132. struct xfs_inode *ip, /* incore inode pointer */
  133. xfs_extnum_t cnt, /* count of entries in list */
  134. int whichfork); /* data or attr fork */
  135. #else
  136. #define xfs_bmap_trace_exlist(f,ip,c,w)
  137. #endif
  138. /*
  139. * Convert inode from non-attributed to attributed.
  140. * Must not be in a transaction, ip must not be locked.
  141. */
  142. int /* error code */
  143. xfs_bmap_add_attrfork(
  144. struct xfs_inode *ip, /* incore inode pointer */
  145. int rsvd); /* flag for reserved block allocation */
  146. /*
  147. * Add the extent to the list of extents to be free at transaction end.
  148. * The list is maintained sorted (by block number).
  149. */
  150. void
  151. xfs_bmap_add_free(
  152. xfs_fsblock_t bno, /* fs block number of extent */
  153. xfs_filblks_t len, /* length of extent */
  154. xfs_bmap_free_t *flist, /* list of extents */
  155. struct xfs_mount *mp); /* mount point structure */
  156. /*
  157. * Routine to clean up the free list data structure when
  158. * an error occurs during a transaction.
  159. */
  160. void
  161. xfs_bmap_cancel(
  162. xfs_bmap_free_t *flist); /* free list to clean up */
  163. /*
  164. * Compute and fill in the value of the maximum depth of a bmap btree
  165. * in this filesystem. Done once, during mount.
  166. */
  167. void
  168. xfs_bmap_compute_maxlevels(
  169. struct xfs_mount *mp, /* file system mount structure */
  170. int whichfork); /* data or attr fork */
  171. /*
  172. * Routine to be called at transaction's end by xfs_bmapi, xfs_bunmapi
  173. * caller. Frees all the extents that need freeing, which must be done
  174. * last due to locking considerations.
  175. *
  176. * Return 1 if the given transaction was committed and a new one allocated,
  177. * and 0 otherwise.
  178. */
  179. int /* error */
  180. xfs_bmap_finish(
  181. struct xfs_trans **tp, /* transaction pointer addr */
  182. xfs_bmap_free_t *flist, /* i/o: list extents to free */
  183. xfs_fsblock_t firstblock, /* controlled a.g. for allocs */
  184. int *committed); /* xact committed or not */
  185. /*
  186. * Returns the file-relative block number of the first unused block in the file.
  187. * This is the lowest-address hole if the file has holes, else the first block
  188. * past the end of file.
  189. */
  190. int /* error */
  191. xfs_bmap_first_unused(
  192. struct xfs_trans *tp, /* transaction pointer */
  193. struct xfs_inode *ip, /* incore inode */
  194. xfs_extlen_t len, /* size of hole to find */
  195. xfs_fileoff_t *unused, /* unused block num */
  196. int whichfork); /* data or attr fork */
  197. /*
  198. * Returns the file-relative block number of the last block + 1 before
  199. * last_block (input value) in the file.
  200. * This is not based on i_size, it is based on the extent list.
  201. * Returns 0 for local files, as they do not have an extent list.
  202. */
  203. int /* error */
  204. xfs_bmap_last_before(
  205. struct xfs_trans *tp, /* transaction pointer */
  206. struct xfs_inode *ip, /* incore inode */
  207. xfs_fileoff_t *last_block, /* last block */
  208. int whichfork); /* data or attr fork */
  209. /*
  210. * Returns the file-relative block number of the first block past eof in
  211. * the file. This is not based on i_size, it is based on the extent list.
  212. * Returns 0 for local files, as they do not have an extent list.
  213. */
  214. int /* error */
  215. xfs_bmap_last_offset(
  216. struct xfs_trans *tp, /* transaction pointer */
  217. struct xfs_inode *ip, /* incore inode */
  218. xfs_fileoff_t *unused, /* last block num */
  219. int whichfork); /* data or attr fork */
  220. /*
  221. * Returns whether the selected fork of the inode has exactly one
  222. * block or not. For the data fork we check this matches di_size,
  223. * implying the file's range is 0..bsize-1.
  224. */
  225. int
  226. xfs_bmap_one_block(
  227. struct xfs_inode *ip, /* incore inode */
  228. int whichfork); /* data or attr fork */
  229. /*
  230. * Read in the extents to iu_extents.
  231. * All inode fields are set up by caller, we just traverse the btree
  232. * and copy the records in.
  233. */
  234. int /* error */
  235. xfs_bmap_read_extents(
  236. struct xfs_trans *tp, /* transaction pointer */
  237. struct xfs_inode *ip, /* incore inode */
  238. int whichfork); /* data or attr fork */
  239. /*
  240. * Map file blocks to filesystem blocks.
  241. * File range is given by the bno/len pair.
  242. * Adds blocks to file if a write ("flags & XFS_BMAPI_WRITE" set)
  243. * into a hole or past eof.
  244. * Only allocates blocks from a single allocation group,
  245. * to avoid locking problems.
  246. * The returned value in "firstblock" from the first call in a transaction
  247. * must be remembered and presented to subsequent calls in "firstblock".
  248. * An upper bound for the number of blocks to be allocated is supplied to
  249. * the first call in "total"; if no allocation group has that many free
  250. * blocks then the call will fail (return NULLFSBLOCK in "firstblock").
  251. */
  252. int /* error */
  253. xfs_bmapi(
  254. struct xfs_trans *tp, /* transaction pointer */
  255. struct xfs_inode *ip, /* incore inode */
  256. xfs_fileoff_t bno, /* starting file offs. mapped */
  257. xfs_filblks_t len, /* length to map in file */
  258. int flags, /* XFS_BMAPI_... */
  259. xfs_fsblock_t *firstblock, /* first allocated block
  260. controls a.g. for allocs */
  261. xfs_extlen_t total, /* total blocks needed */
  262. struct xfs_bmbt_irec *mval, /* output: map values */
  263. int *nmap, /* i/o: mval size/count */
  264. xfs_bmap_free_t *flist); /* i/o: list extents to free */
  265. /*
  266. * Map file blocks to filesystem blocks, simple version.
  267. * One block only, read-only.
  268. * For flags, only the XFS_BMAPI_ATTRFORK flag is examined.
  269. * For the other flag values, the effect is as if XFS_BMAPI_METADATA
  270. * was set and all the others were clear.
  271. */
  272. int /* error */
  273. xfs_bmapi_single(
  274. struct xfs_trans *tp, /* transaction pointer */
  275. struct xfs_inode *ip, /* incore inode */
  276. int whichfork, /* data or attr fork */
  277. xfs_fsblock_t *fsb, /* output: mapped block */
  278. xfs_fileoff_t bno); /* starting file offs. mapped */
  279. /*
  280. * Unmap (remove) blocks from a file.
  281. * If nexts is nonzero then the number of extents to remove is limited to
  282. * that value. If not all extents in the block range can be removed then
  283. * *done is set.
  284. */
  285. int /* error */
  286. xfs_bunmapi(
  287. struct xfs_trans *tp, /* transaction pointer */
  288. struct xfs_inode *ip, /* incore inode */
  289. xfs_fileoff_t bno, /* starting offset to unmap */
  290. xfs_filblks_t len, /* length to unmap in file */
  291. int flags, /* XFS_BMAPI_... */
  292. xfs_extnum_t nexts, /* number of extents max */
  293. xfs_fsblock_t *firstblock, /* first allocated block
  294. controls a.g. for allocs */
  295. xfs_bmap_free_t *flist, /* i/o: list extents to free */
  296. int *done); /* set if not done yet */
  297. /*
  298. * Fcntl interface to xfs_bmapi.
  299. */
  300. int /* error code */
  301. xfs_getbmap(
  302. bhv_desc_t *bdp, /* XFS behavior descriptor*/
  303. struct getbmap *bmv, /* user bmap structure */
  304. void __user *ap, /* pointer to user's array */
  305. int iflags); /* interface flags */
  306. /*
  307. * Check if the endoff is outside the last extent. If so the caller will grow
  308. * the allocation to a stripe unit boundary
  309. */
  310. int
  311. xfs_bmap_eof(
  312. struct xfs_inode *ip,
  313. xfs_fileoff_t endoff,
  314. int whichfork,
  315. int *eof);
  316. /*
  317. * Count fsblocks of the given fork.
  318. */
  319. int
  320. xfs_bmap_count_blocks(
  321. xfs_trans_t *tp,
  322. struct xfs_inode *ip,
  323. int whichfork,
  324. int *count);
  325. /*
  326. * Check an extent list, which has just been read, for
  327. * any bit in the extent flag field.
  328. */
  329. int
  330. xfs_check_nostate_extents(
  331. xfs_bmbt_rec_t *ep,
  332. xfs_extnum_t num);
  333. #endif /* __KERNEL__ */
  334. #endif /* __XFS_BMAP_H__ */