xfs_inode.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. /*
  2. * Copyright (c) 2000-2003,2005 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_INODE_H__
  19. #define __XFS_INODE_H__
  20. /*
  21. * Fork identifiers.
  22. */
  23. #define XFS_DATA_FORK 0
  24. #define XFS_ATTR_FORK 1
  25. /*
  26. * File incore extent information, present for each of data & attr forks.
  27. */
  28. #define XFS_INLINE_EXTS 2
  29. #define XFS_INLINE_DATA 32
  30. typedef struct xfs_ifork {
  31. int if_bytes; /* bytes in if_u1 */
  32. int if_real_bytes; /* bytes allocated in if_u1 */
  33. xfs_bmbt_block_t *if_broot; /* file's incore btree root */
  34. short if_broot_bytes; /* bytes allocated for root */
  35. unsigned char if_flags; /* per-fork flags */
  36. unsigned char if_ext_max; /* max # of extent records */
  37. xfs_extnum_t if_lastex; /* last if_extents used */
  38. union {
  39. xfs_bmbt_rec_t *if_extents; /* linear map file exts */
  40. char *if_data; /* inline file data */
  41. } if_u1;
  42. union {
  43. xfs_bmbt_rec_t if_inline_ext[XFS_INLINE_EXTS];
  44. /* very small file extents */
  45. char if_inline_data[XFS_INLINE_DATA];
  46. /* very small file data */
  47. xfs_dev_t if_rdev; /* dev number if special */
  48. uuid_t if_uuid; /* mount point value */
  49. } if_u2;
  50. } xfs_ifork_t;
  51. /*
  52. * Flags for xfs_ichgtime().
  53. */
  54. #define XFS_ICHGTIME_MOD 0x1 /* data fork modification timestamp */
  55. #define XFS_ICHGTIME_ACC 0x2 /* data fork access timestamp */
  56. #define XFS_ICHGTIME_CHG 0x4 /* inode field change timestamp */
  57. /*
  58. * Per-fork incore inode flags.
  59. */
  60. #define XFS_IFINLINE 0x0001 /* Inline data is read in */
  61. #define XFS_IFEXTENTS 0x0002 /* All extent pointers are read in */
  62. #define XFS_IFBROOT 0x0004 /* i_broot points to the bmap b-tree root */
  63. /*
  64. * Flags for xfs_imap() and xfs_dilocate().
  65. */
  66. #define XFS_IMAP_LOOKUP 0x1
  67. /*
  68. * Maximum number of extent pointers in if_u1.if_extents.
  69. */
  70. #define XFS_MAX_INCORE_EXTENTS 32768
  71. #ifdef __KERNEL__
  72. struct bhv_desc;
  73. struct cred;
  74. struct ktrace;
  75. struct vnode;
  76. struct xfs_buf;
  77. struct xfs_bmap_free;
  78. struct xfs_bmbt_irec;
  79. struct xfs_bmbt_block;
  80. struct xfs_inode;
  81. struct xfs_inode_log_item;
  82. struct xfs_mount;
  83. struct xfs_trans;
  84. struct xfs_dquot;
  85. #if defined(XFS_ILOCK_TRACE)
  86. #define XFS_ILOCK_KTRACE_SIZE 32
  87. extern ktrace_t *xfs_ilock_trace_buf;
  88. extern void xfs_ilock_trace(struct xfs_inode *, int, unsigned int, inst_t *);
  89. #else
  90. #define xfs_ilock_trace(i,n,f,ra)
  91. #endif
  92. /*
  93. * This structure is used to communicate which extents of a file
  94. * were holes when a write started from xfs_write_file() to
  95. * xfs_strat_read(). This is necessary so that we can know which
  96. * blocks need to be zeroed when they are read in in xfs_strat_read()
  97. * if they weren\'t allocated when the buffer given to xfs_strat_read()
  98. * was mapped.
  99. *
  100. * We keep a list of these attached to the inode. The list is
  101. * protected by the inode lock and the fact that the io lock is
  102. * held exclusively by writers.
  103. */
  104. typedef struct xfs_gap {
  105. struct xfs_gap *xg_next;
  106. xfs_fileoff_t xg_offset_fsb;
  107. xfs_extlen_t xg_count_fsb;
  108. } xfs_gap_t;
  109. typedef struct dm_attrs_s {
  110. __uint32_t da_dmevmask; /* DMIG event mask */
  111. __uint16_t da_dmstate; /* DMIG state info */
  112. __uint16_t da_pad; /* DMIG extra padding */
  113. } dm_attrs_t;
  114. typedef struct xfs_iocore {
  115. void *io_obj; /* pointer to container
  116. * inode or dcxvn structure */
  117. struct xfs_mount *io_mount; /* fs mount struct ptr */
  118. #ifdef DEBUG
  119. mrlock_t *io_lock; /* inode IO lock */
  120. mrlock_t *io_iolock; /* inode IO lock */
  121. #endif
  122. /* I/O state */
  123. xfs_fsize_t io_new_size; /* sz when write completes */
  124. /* Miscellaneous state. */
  125. unsigned int io_flags; /* IO related flags */
  126. /* DMAPI state */
  127. dm_attrs_t io_dmattrs;
  128. } xfs_iocore_t;
  129. #define io_dmevmask io_dmattrs.da_dmevmask
  130. #define io_dmstate io_dmattrs.da_dmstate
  131. #define XFS_IO_INODE(io) ((xfs_inode_t *) ((io)->io_obj))
  132. #define XFS_IO_DCXVN(io) ((dcxvn_t *) ((io)->io_obj))
  133. /*
  134. * Flags in the flags field
  135. */
  136. #define XFS_IOCORE_RT 0x1
  137. /*
  138. * xfs_iocore prototypes
  139. */
  140. extern void xfs_iocore_inode_init(struct xfs_inode *);
  141. extern void xfs_iocore_inode_reinit(struct xfs_inode *);
  142. /*
  143. * This is the type used in the xfs inode hash table.
  144. * An array of these is allocated for each mounted
  145. * file system to hash the inodes for that file system.
  146. */
  147. typedef struct xfs_ihash {
  148. struct xfs_inode *ih_next;
  149. rwlock_t ih_lock;
  150. uint ih_version;
  151. } xfs_ihash_t;
  152. #define XFS_IHASH(mp,ino) ((mp)->m_ihash + (((uint)(ino)) % (mp)->m_ihsize))
  153. /*
  154. * This is the xfs inode cluster hash. This hash is used by xfs_iflush to
  155. * find inodes that share a cluster and can be flushed to disk at the same
  156. * time.
  157. */
  158. typedef struct xfs_chashlist {
  159. struct xfs_chashlist *chl_next;
  160. struct xfs_inode *chl_ip;
  161. xfs_daddr_t chl_blkno; /* starting block number of
  162. * the cluster */
  163. struct xfs_buf *chl_buf; /* the inode buffer */
  164. } xfs_chashlist_t;
  165. typedef struct xfs_chash {
  166. xfs_chashlist_t *ch_list;
  167. lock_t ch_lock;
  168. } xfs_chash_t;
  169. #define XFS_CHASH(mp,blk) ((mp)->m_chash + (((uint)blk) % (mp)->m_chsize))
  170. /*
  171. * This is the xfs in-core inode structure.
  172. * Most of the on-disk inode is embedded in the i_d field.
  173. *
  174. * The extent pointers/inline file space, however, are managed
  175. * separately. The memory for this information is pointed to by
  176. * the if_u1 unions depending on the type of the data.
  177. * This is used to linearize the array of extents for fast in-core
  178. * access. This is used until the file's number of extents
  179. * surpasses XFS_MAX_INCORE_EXTENTS, at which point all extent pointers
  180. * are accessed through the buffer cache.
  181. *
  182. * Other state kept in the in-core inode is used for identification,
  183. * locking, transactional updating, etc of the inode.
  184. *
  185. * Generally, we do not want to hold the i_rlock while holding the
  186. * i_ilock. Hierarchy is i_iolock followed by i_rlock.
  187. *
  188. * xfs_iptr_t contains all the inode fields upto and including the
  189. * i_mnext and i_mprev fields, it is used as a marker in the inode
  190. * chain off the mount structure by xfs_sync calls.
  191. */
  192. typedef struct {
  193. struct xfs_ihash *ip_hash; /* pointer to hash header */
  194. struct xfs_inode *ip_next; /* inode hash link forw */
  195. struct xfs_inode *ip_mnext; /* next inode in mount list */
  196. struct xfs_inode *ip_mprev; /* ptr to prev inode */
  197. struct xfs_inode **ip_prevp; /* ptr to prev i_next */
  198. struct xfs_mount *ip_mount; /* fs mount struct ptr */
  199. } xfs_iptr_t;
  200. typedef struct xfs_inode {
  201. /* Inode linking and identification information. */
  202. struct xfs_ihash *i_hash; /* pointer to hash header */
  203. struct xfs_inode *i_next; /* inode hash link forw */
  204. struct xfs_inode *i_mnext; /* next inode in mount list */
  205. struct xfs_inode *i_mprev; /* ptr to prev inode */
  206. struct xfs_inode **i_prevp; /* ptr to prev i_next */
  207. struct xfs_mount *i_mount; /* fs mount struct ptr */
  208. struct list_head i_reclaim; /* reclaim list */
  209. struct bhv_desc i_bhv_desc; /* inode behavior descriptor*/
  210. struct xfs_dquot *i_udquot; /* user dquot */
  211. struct xfs_dquot *i_gdquot; /* group dquot */
  212. /* Inode location stuff */
  213. xfs_ino_t i_ino; /* inode number (agno/agino)*/
  214. xfs_daddr_t i_blkno; /* blkno of inode buffer */
  215. ushort i_len; /* len of inode buffer */
  216. ushort i_boffset; /* off of inode in buffer */
  217. /* Extent information. */
  218. xfs_ifork_t *i_afp; /* attribute fork pointer */
  219. xfs_ifork_t i_df; /* data fork */
  220. /* Transaction and locking information. */
  221. struct xfs_trans *i_transp; /* ptr to owning transaction*/
  222. struct xfs_inode_log_item *i_itemp; /* logging information */
  223. mrlock_t i_lock; /* inode lock */
  224. mrlock_t i_iolock; /* inode IO lock */
  225. sema_t i_flock; /* inode flush lock */
  226. atomic_t i_pincount; /* inode pin count */
  227. wait_queue_head_t i_ipin_wait; /* inode pinning wait queue */
  228. #ifdef HAVE_REFCACHE
  229. struct xfs_inode **i_refcache; /* ptr to entry in ref cache */
  230. struct xfs_inode *i_release; /* inode to unref */
  231. #endif
  232. /* I/O state */
  233. xfs_iocore_t i_iocore; /* I/O core */
  234. /* Miscellaneous state. */
  235. unsigned short i_flags; /* see defined flags below */
  236. unsigned char i_update_core; /* timestamps/size is dirty */
  237. unsigned char i_update_size; /* di_size field is dirty */
  238. unsigned int i_gen; /* generation count */
  239. unsigned int i_delayed_blks; /* count of delay alloc blks */
  240. xfs_dinode_core_t i_d; /* most of ondisk inode */
  241. xfs_chashlist_t *i_chash; /* cluster hash list header */
  242. struct xfs_inode *i_cnext; /* cluster hash link forward */
  243. struct xfs_inode *i_cprev; /* cluster hash link backward */
  244. /* Trace buffers per inode. */
  245. #ifdef XFS_BMAP_TRACE
  246. struct ktrace *i_xtrace; /* inode extent list trace */
  247. #endif
  248. #ifdef XFS_BMBT_TRACE
  249. struct ktrace *i_btrace; /* inode bmap btree trace */
  250. #endif
  251. #ifdef XFS_RW_TRACE
  252. struct ktrace *i_rwtrace; /* inode read/write trace */
  253. #endif
  254. #ifdef XFS_ILOCK_TRACE
  255. struct ktrace *i_lock_trace; /* inode lock/unlock trace */
  256. #endif
  257. #ifdef XFS_DIR2_TRACE
  258. struct ktrace *i_dir_trace; /* inode directory trace */
  259. #endif
  260. } xfs_inode_t;
  261. #endif /* __KERNEL__ */
  262. /*
  263. * Fork handling.
  264. */
  265. #define XFS_IFORK_PTR(ip,w) \
  266. ((w) == XFS_DATA_FORK ? &(ip)->i_df : (ip)->i_afp)
  267. #define XFS_IFORK_Q(ip) XFS_CFORK_Q(&(ip)->i_d)
  268. #define XFS_IFORK_DSIZE(ip) XFS_CFORK_DSIZE(&ip->i_d, ip->i_mount)
  269. #define XFS_IFORK_ASIZE(ip) XFS_CFORK_ASIZE(&ip->i_d, ip->i_mount)
  270. #define XFS_IFORK_SIZE(ip,w) XFS_CFORK_SIZE(&ip->i_d, ip->i_mount, w)
  271. #define XFS_IFORK_FORMAT(ip,w) XFS_CFORK_FORMAT(&ip->i_d, w)
  272. #define XFS_IFORK_FMT_SET(ip,w,n) XFS_CFORK_FMT_SET(&ip->i_d, w, n)
  273. #define XFS_IFORK_NEXTENTS(ip,w) XFS_CFORK_NEXTENTS(&ip->i_d, w)
  274. #define XFS_IFORK_NEXT_SET(ip,w,n) XFS_CFORK_NEXT_SET(&ip->i_d, w, n)
  275. #ifdef __KERNEL__
  276. /*
  277. * In-core inode flags.
  278. */
  279. #define XFS_IGRIO 0x0001 /* inode used for guaranteed rate i/o */
  280. #define XFS_IUIOSZ 0x0002 /* inode i/o sizes have been explicitly set */
  281. #define XFS_IQUIESCE 0x0004 /* we have started quiescing for this inode */
  282. #define XFS_IRECLAIM 0x0008 /* we have started reclaiming this inode */
  283. #define XFS_ISTALE 0x0010 /* inode has been staled */
  284. #define XFS_IRECLAIMABLE 0x0020 /* inode can be reclaimed */
  285. #define XFS_INEW 0x0040
  286. /*
  287. * Flags for inode locking.
  288. */
  289. #define XFS_IOLOCK_EXCL 0x001
  290. #define XFS_IOLOCK_SHARED 0x002
  291. #define XFS_ILOCK_EXCL 0x004
  292. #define XFS_ILOCK_SHARED 0x008
  293. #define XFS_IUNLOCK_NONOTIFY 0x010
  294. /* XFS_IOLOCK_NESTED 0x020 */
  295. #define XFS_EXTENT_TOKEN_RD 0x040
  296. #define XFS_SIZE_TOKEN_RD 0x080
  297. #define XFS_EXTSIZE_RD (XFS_EXTENT_TOKEN_RD|XFS_SIZE_TOKEN_RD)
  298. #define XFS_WILLLEND 0x100 /* Always acquire tokens for lending */
  299. #define XFS_EXTENT_TOKEN_WR (XFS_EXTENT_TOKEN_RD | XFS_WILLLEND)
  300. #define XFS_SIZE_TOKEN_WR (XFS_SIZE_TOKEN_RD | XFS_WILLLEND)
  301. #define XFS_EXTSIZE_WR (XFS_EXTSIZE_RD | XFS_WILLLEND)
  302. /* XFS_SIZE_TOKEN_WANT 0x200 */
  303. #define XFS_LOCK_MASK \
  304. (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL | \
  305. XFS_ILOCK_SHARED | XFS_EXTENT_TOKEN_RD | XFS_SIZE_TOKEN_RD | \
  306. XFS_WILLLEND)
  307. /*
  308. * Flags for xfs_iflush()
  309. */
  310. #define XFS_IFLUSH_DELWRI_ELSE_SYNC 1
  311. #define XFS_IFLUSH_DELWRI_ELSE_ASYNC 2
  312. #define XFS_IFLUSH_SYNC 3
  313. #define XFS_IFLUSH_ASYNC 4
  314. #define XFS_IFLUSH_DELWRI 5
  315. /*
  316. * Flags for xfs_itruncate_start().
  317. */
  318. #define XFS_ITRUNC_DEFINITE 0x1
  319. #define XFS_ITRUNC_MAYBE 0x2
  320. #define XFS_ITOV(ip) BHV_TO_VNODE(XFS_ITOBHV(ip))
  321. #define XFS_ITOV_NULL(ip) BHV_TO_VNODE_NULL(XFS_ITOBHV(ip))
  322. #define XFS_ITOBHV(ip) ((struct bhv_desc *)(&((ip)->i_bhv_desc)))
  323. #define XFS_BHVTOI(bhvp) ((xfs_inode_t *)((char *)(bhvp) - \
  324. (char *)&(((xfs_inode_t *)0)->i_bhv_desc)))
  325. #define BHV_IS_XFS(bdp) (BHV_OPS(bdp) == &xfs_vnodeops)
  326. /*
  327. * For multiple groups support: if S_ISGID bit is set in the parent
  328. * directory, group of new file is set to that of the parent, and
  329. * new subdirectory gets S_ISGID bit from parent.
  330. */
  331. #define XFS_INHERIT_GID(pip, vfsp) \
  332. (((vfsp)->vfs_flag & VFS_GRPID) || ((pip)->i_d.di_mode & S_ISGID))
  333. /*
  334. * xfs_iget.c prototypes.
  335. */
  336. #define IGET_CREATE 1
  337. void xfs_ihash_init(struct xfs_mount *);
  338. void xfs_ihash_free(struct xfs_mount *);
  339. void xfs_chash_init(struct xfs_mount *);
  340. void xfs_chash_free(struct xfs_mount *);
  341. xfs_inode_t *xfs_inode_incore(struct xfs_mount *, xfs_ino_t,
  342. struct xfs_trans *);
  343. void xfs_inode_lock_init(xfs_inode_t *, struct vnode *);
  344. int xfs_iget(struct xfs_mount *, struct xfs_trans *, xfs_ino_t,
  345. uint, uint, xfs_inode_t **, xfs_daddr_t);
  346. void xfs_iput(xfs_inode_t *, uint);
  347. void xfs_iput_new(xfs_inode_t *, uint);
  348. void xfs_ilock(xfs_inode_t *, uint);
  349. int xfs_ilock_nowait(xfs_inode_t *, uint);
  350. void xfs_iunlock(xfs_inode_t *, uint);
  351. void xfs_ilock_demote(xfs_inode_t *, uint);
  352. void xfs_iflock(xfs_inode_t *);
  353. int xfs_iflock_nowait(xfs_inode_t *);
  354. uint xfs_ilock_map_shared(xfs_inode_t *);
  355. void xfs_iunlock_map_shared(xfs_inode_t *, uint);
  356. void xfs_ifunlock(xfs_inode_t *);
  357. void xfs_ireclaim(xfs_inode_t *);
  358. int xfs_finish_reclaim(xfs_inode_t *, int, int);
  359. int xfs_finish_reclaim_all(struct xfs_mount *, int);
  360. /*
  361. * xfs_inode.c prototypes.
  362. */
  363. int xfs_itobp(struct xfs_mount *, struct xfs_trans *,
  364. xfs_inode_t *, xfs_dinode_t **, struct xfs_buf **,
  365. xfs_daddr_t);
  366. int xfs_iread(struct xfs_mount *, struct xfs_trans *, xfs_ino_t,
  367. xfs_inode_t **, xfs_daddr_t);
  368. int xfs_iread_extents(struct xfs_trans *, xfs_inode_t *, int);
  369. int xfs_ialloc(struct xfs_trans *, xfs_inode_t *, mode_t,
  370. xfs_nlink_t, xfs_dev_t, struct cred *, xfs_prid_t,
  371. int, struct xfs_buf **, boolean_t *, xfs_inode_t **);
  372. void xfs_xlate_dinode_core(xfs_caddr_t, struct xfs_dinode_core *,
  373. int);
  374. uint xfs_ip2xflags(struct xfs_inode *);
  375. uint xfs_dic2xflags(struct xfs_dinode_core *);
  376. int xfs_ifree(struct xfs_trans *, xfs_inode_t *,
  377. struct xfs_bmap_free *);
  378. void xfs_itruncate_start(xfs_inode_t *, uint, xfs_fsize_t);
  379. int xfs_itruncate_finish(struct xfs_trans **, xfs_inode_t *,
  380. xfs_fsize_t, int, int);
  381. int xfs_iunlink(struct xfs_trans *, xfs_inode_t *);
  382. int xfs_igrow_start(xfs_inode_t *, xfs_fsize_t, struct cred *);
  383. void xfs_igrow_finish(struct xfs_trans *, xfs_inode_t *,
  384. xfs_fsize_t, int);
  385. void xfs_idestroy_fork(xfs_inode_t *, int);
  386. void xfs_idestroy(xfs_inode_t *);
  387. void xfs_idata_realloc(xfs_inode_t *, int, int);
  388. void xfs_iextract(xfs_inode_t *);
  389. void xfs_iext_realloc(xfs_inode_t *, int, int);
  390. void xfs_iroot_realloc(xfs_inode_t *, int, int);
  391. void xfs_ipin(xfs_inode_t *);
  392. void xfs_iunpin(xfs_inode_t *);
  393. int xfs_iextents_copy(xfs_inode_t *, xfs_bmbt_rec_t *, int);
  394. int xfs_iflush(xfs_inode_t *, uint);
  395. void xfs_iflush_all(struct xfs_mount *);
  396. int xfs_iaccess(xfs_inode_t *, mode_t, cred_t *);
  397. uint xfs_iroundup(uint);
  398. void xfs_ichgtime(xfs_inode_t *, int);
  399. xfs_fsize_t xfs_file_last_byte(xfs_inode_t *);
  400. void xfs_lock_inodes(xfs_inode_t **, int, int, uint);
  401. #define xfs_ipincount(ip) ((unsigned int) atomic_read(&ip->i_pincount))
  402. #ifdef DEBUG
  403. void xfs_isize_check(struct xfs_mount *, xfs_inode_t *, xfs_fsize_t);
  404. #else /* DEBUG */
  405. #define xfs_isize_check(mp, ip, isize)
  406. #endif /* DEBUG */
  407. #if defined(DEBUG)
  408. void xfs_inobp_check(struct xfs_mount *, struct xfs_buf *);
  409. #else
  410. #define xfs_inobp_check(mp, bp)
  411. #endif /* DEBUG */
  412. extern struct kmem_zone *xfs_chashlist_zone;
  413. extern struct kmem_zone *xfs_ifork_zone;
  414. extern struct kmem_zone *xfs_inode_zone;
  415. extern struct kmem_zone *xfs_ili_zone;
  416. extern struct vnodeops xfs_vnodeops;
  417. #endif /* __KERNEL__ */
  418. #endif /* __XFS_INODE_H__ */