xfs_vnode.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. /*
  2. * Copyright (c) 2000-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. * Portions Copyright (c) 1989, 1993
  19. * The Regents of the University of California. All rights reserved.
  20. *
  21. * Redistribution and use in source and binary forms, with or without
  22. * modification, are permitted provided that the following conditions
  23. * are met:
  24. * 1. Redistributions of source code must retain the above copyright
  25. * notice, this list of conditions and the following disclaimer.
  26. * 2. Redistributions in binary form must reproduce the above copyright
  27. * notice, this list of conditions and the following disclaimer in the
  28. * documentation and/or other materials provided with the distribution.
  29. * 3. Neither the name of the University nor the names of its contributors
  30. * may be used to endorse or promote products derived from this software
  31. * without specific prior written permission.
  32. *
  33. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  34. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  35. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  36. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  37. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  38. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  39. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  40. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  41. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  42. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  43. * SUCH DAMAGE.
  44. */
  45. #ifndef __XFS_VNODE_H__
  46. #define __XFS_VNODE_H__
  47. struct uio;
  48. struct file;
  49. struct vattr;
  50. struct xfs_iomap;
  51. struct attrlist_cursor_kern;
  52. typedef xfs_ino_t vnumber_t;
  53. typedef struct dentry vname_t;
  54. typedef bhv_head_t vn_bhv_head_t;
  55. typedef enum vflags {
  56. VMODIFIED = 0x08, /* XFS inode state possibly differs */
  57. /* to the Linux inode state. */
  58. VTRUNCATED = 0x40, /* truncated down so flush-on-close */
  59. } vflags_t;
  60. /*
  61. * MP locking protocols:
  62. * v_flag, v_vfsp VN_LOCK/VN_UNLOCK
  63. */
  64. typedef struct vnode {
  65. vflags_t v_flag; /* vnode flags (see above) */
  66. struct bhv_vfs *v_vfsp; /* ptr to containing VFS */
  67. vnumber_t v_number; /* in-core vnode number */
  68. vn_bhv_head_t v_bh; /* behavior head */
  69. spinlock_t v_lock; /* VN_LOCK/VN_UNLOCK */
  70. atomic_t v_iocount; /* outstanding I/O count */
  71. #ifdef XFS_VNODE_TRACE
  72. struct ktrace *v_trace; /* trace header structure */
  73. #endif
  74. struct inode v_inode; /* Linux inode */
  75. /* inode MUST be last */
  76. } vnode_t;
  77. #define VN_ISLNK(vp) S_ISLNK((vp)->v_inode.i_mode)
  78. #define VN_ISREG(vp) S_ISREG((vp)->v_inode.i_mode)
  79. #define VN_ISDIR(vp) S_ISDIR((vp)->v_inode.i_mode)
  80. #define VN_ISCHR(vp) S_ISCHR((vp)->v_inode.i_mode)
  81. #define VN_ISBLK(vp) S_ISBLK((vp)->v_inode.i_mode)
  82. #define v_fbhv v_bh.bh_first /* first behavior */
  83. #define v_fops v_bh.bh_first->bd_ops /* first behavior ops */
  84. #define VNODE_POSITION_BASE BHV_POSITION_BASE /* chain bottom */
  85. #define VNODE_POSITION_TOP BHV_POSITION_TOP /* chain top */
  86. #define VNODE_POSITION_INVALID BHV_POSITION_INVALID /* invalid pos. num */
  87. typedef enum {
  88. VN_BHV_UNKNOWN, /* not specified */
  89. VN_BHV_XFS, /* xfs */
  90. VN_BHV_DM, /* data migration */
  91. VN_BHV_QM, /* quota manager */
  92. VN_BHV_IO, /* IO path */
  93. VN_BHV_END /* housekeeping end-of-range */
  94. } vn_bhv_t;
  95. #define VNODE_POSITION_XFS (VNODE_POSITION_BASE)
  96. #define VNODE_POSITION_DM (VNODE_POSITION_BASE+10)
  97. #define VNODE_POSITION_QM (VNODE_POSITION_BASE+20)
  98. #define VNODE_POSITION_IO (VNODE_POSITION_BASE+30)
  99. /*
  100. * Macros for dealing with the behavior descriptor inside of the vnode.
  101. */
  102. #define BHV_TO_VNODE(bdp) ((vnode_t *)BHV_VOBJ(bdp))
  103. #define BHV_TO_VNODE_NULL(bdp) ((vnode_t *)BHV_VOBJNULL(bdp))
  104. #define VN_BHV_HEAD(vp) ((bhv_head_t *)(&((vp)->v_bh)))
  105. #define vn_bhv_head_init(bhp,name) bhv_head_init(bhp,name)
  106. #define vn_bhv_remove(bhp,bdp) bhv_remove(bhp,bdp)
  107. #define vn_bhv_lookup(bhp,ops) bhv_lookup(bhp,ops)
  108. #define vn_bhv_lookup_unlocked(bhp,ops) bhv_lookup_unlocked(bhp,ops)
  109. /*
  110. * Vnode to Linux inode mapping.
  111. */
  112. static inline struct vnode *vn_from_inode(struct inode *inode)
  113. {
  114. return (vnode_t *)list_entry(inode, vnode_t, v_inode);
  115. }
  116. static inline struct inode *vn_to_inode(struct vnode *vnode)
  117. {
  118. return &vnode->v_inode;
  119. }
  120. /*
  121. * Values for the VOP_RWLOCK and VOP_RWUNLOCK flags parameter.
  122. */
  123. typedef enum vrwlock {
  124. VRWLOCK_NONE,
  125. VRWLOCK_READ,
  126. VRWLOCK_WRITE,
  127. VRWLOCK_WRITE_DIRECT,
  128. VRWLOCK_TRY_READ,
  129. VRWLOCK_TRY_WRITE
  130. } vrwlock_t;
  131. /*
  132. * Return values for VOP_INACTIVE. A return value of
  133. * VN_INACTIVE_NOCACHE implies that the file system behavior
  134. * has disassociated its state and bhv_desc_t from the vnode.
  135. */
  136. #define VN_INACTIVE_CACHE 0
  137. #define VN_INACTIVE_NOCACHE 1
  138. /*
  139. * Values for the cmd code given to VOP_VNODE_CHANGE.
  140. */
  141. typedef enum vchange {
  142. VCHANGE_FLAGS_FRLOCKS = 0,
  143. VCHANGE_FLAGS_ENF_LOCKING = 1,
  144. VCHANGE_FLAGS_TRUNCATED = 2,
  145. VCHANGE_FLAGS_PAGE_DIRTY = 3,
  146. VCHANGE_FLAGS_IOEXCL_COUNT = 4
  147. } vchange_t;
  148. typedef enum { L_FALSE, L_TRUE } lastclose_t;
  149. typedef int (*vop_open_t)(bhv_desc_t *, struct cred *);
  150. typedef int (*vop_close_t)(bhv_desc_t *, int, lastclose_t, struct cred *);
  151. typedef ssize_t (*vop_read_t)(bhv_desc_t *, struct kiocb *,
  152. const struct iovec *, unsigned int,
  153. loff_t *, int, struct cred *);
  154. typedef ssize_t (*vop_write_t)(bhv_desc_t *, struct kiocb *,
  155. const struct iovec *, unsigned int,
  156. loff_t *, int, struct cred *);
  157. typedef ssize_t (*vop_sendfile_t)(bhv_desc_t *, struct file *,
  158. loff_t *, int, size_t, read_actor_t,
  159. void *, struct cred *);
  160. typedef ssize_t (*vop_splice_read_t)(bhv_desc_t *, struct file *, loff_t *,
  161. struct pipe_inode_info *, size_t, int, int,
  162. struct cred *);
  163. typedef ssize_t (*vop_splice_write_t)(bhv_desc_t *, struct pipe_inode_info *,
  164. struct file *, loff_t *, size_t, int, int,
  165. struct cred *);
  166. typedef int (*vop_ioctl_t)(bhv_desc_t *, struct inode *, struct file *,
  167. int, unsigned int, void __user *);
  168. typedef int (*vop_getattr_t)(bhv_desc_t *, struct vattr *, int,
  169. struct cred *);
  170. typedef int (*vop_setattr_t)(bhv_desc_t *, struct vattr *, int,
  171. struct cred *);
  172. typedef int (*vop_access_t)(bhv_desc_t *, int, struct cred *);
  173. typedef int (*vop_lookup_t)(bhv_desc_t *, vname_t *, vnode_t **,
  174. int, vnode_t *, struct cred *);
  175. typedef int (*vop_create_t)(bhv_desc_t *, vname_t *, struct vattr *,
  176. vnode_t **, struct cred *);
  177. typedef int (*vop_remove_t)(bhv_desc_t *, vname_t *, struct cred *);
  178. typedef int (*vop_link_t)(bhv_desc_t *, vnode_t *, vname_t *,
  179. struct cred *);
  180. typedef int (*vop_rename_t)(bhv_desc_t *, vname_t *, vnode_t *, vname_t *,
  181. struct cred *);
  182. typedef int (*vop_mkdir_t)(bhv_desc_t *, vname_t *, struct vattr *,
  183. vnode_t **, struct cred *);
  184. typedef int (*vop_rmdir_t)(bhv_desc_t *, vname_t *, struct cred *);
  185. typedef int (*vop_readdir_t)(bhv_desc_t *, struct uio *, struct cred *,
  186. int *);
  187. typedef int (*vop_symlink_t)(bhv_desc_t *, vname_t *, struct vattr *,
  188. char *, vnode_t **, struct cred *);
  189. typedef int (*vop_readlink_t)(bhv_desc_t *, struct uio *, int,
  190. struct cred *);
  191. typedef int (*vop_fsync_t)(bhv_desc_t *, int, struct cred *,
  192. xfs_off_t, xfs_off_t);
  193. typedef int (*vop_inactive_t)(bhv_desc_t *, struct cred *);
  194. typedef int (*vop_fid2_t)(bhv_desc_t *, struct fid *);
  195. typedef int (*vop_release_t)(bhv_desc_t *);
  196. typedef int (*vop_rwlock_t)(bhv_desc_t *, vrwlock_t);
  197. typedef void (*vop_rwunlock_t)(bhv_desc_t *, vrwlock_t);
  198. typedef int (*vop_bmap_t)(bhv_desc_t *, xfs_off_t, ssize_t, int,
  199. struct xfs_iomap *, int *);
  200. typedef int (*vop_reclaim_t)(bhv_desc_t *);
  201. typedef int (*vop_attr_get_t)(bhv_desc_t *, const char *, char *, int *,
  202. int, struct cred *);
  203. typedef int (*vop_attr_set_t)(bhv_desc_t *, const char *, char *, int,
  204. int, struct cred *);
  205. typedef int (*vop_attr_remove_t)(bhv_desc_t *, const char *,
  206. int, struct cred *);
  207. typedef int (*vop_attr_list_t)(bhv_desc_t *, char *, int, int,
  208. struct attrlist_cursor_kern *, struct cred *);
  209. typedef void (*vop_link_removed_t)(bhv_desc_t *, vnode_t *, int);
  210. typedef void (*vop_vnode_change_t)(bhv_desc_t *, vchange_t, __psint_t);
  211. typedef void (*vop_ptossvp_t)(bhv_desc_t *, xfs_off_t, xfs_off_t, int);
  212. typedef void (*vop_pflushinvalvp_t)(bhv_desc_t *, xfs_off_t, xfs_off_t, int);
  213. typedef int (*vop_pflushvp_t)(bhv_desc_t *, xfs_off_t, xfs_off_t,
  214. uint64_t, int);
  215. typedef int (*vop_iflush_t)(bhv_desc_t *, int);
  216. typedef struct vnodeops {
  217. bhv_position_t vn_position; /* position within behavior chain */
  218. vop_open_t vop_open;
  219. vop_close_t vop_close;
  220. vop_read_t vop_read;
  221. vop_write_t vop_write;
  222. vop_sendfile_t vop_sendfile;
  223. vop_splice_read_t vop_splice_read;
  224. vop_splice_write_t vop_splice_write;
  225. vop_ioctl_t vop_ioctl;
  226. vop_getattr_t vop_getattr;
  227. vop_setattr_t vop_setattr;
  228. vop_access_t vop_access;
  229. vop_lookup_t vop_lookup;
  230. vop_create_t vop_create;
  231. vop_remove_t vop_remove;
  232. vop_link_t vop_link;
  233. vop_rename_t vop_rename;
  234. vop_mkdir_t vop_mkdir;
  235. vop_rmdir_t vop_rmdir;
  236. vop_readdir_t vop_readdir;
  237. vop_symlink_t vop_symlink;
  238. vop_readlink_t vop_readlink;
  239. vop_fsync_t vop_fsync;
  240. vop_inactive_t vop_inactive;
  241. vop_fid2_t vop_fid2;
  242. vop_rwlock_t vop_rwlock;
  243. vop_rwunlock_t vop_rwunlock;
  244. vop_bmap_t vop_bmap;
  245. vop_reclaim_t vop_reclaim;
  246. vop_attr_get_t vop_attr_get;
  247. vop_attr_set_t vop_attr_set;
  248. vop_attr_remove_t vop_attr_remove;
  249. vop_attr_list_t vop_attr_list;
  250. vop_link_removed_t vop_link_removed;
  251. vop_vnode_change_t vop_vnode_change;
  252. vop_ptossvp_t vop_tosspages;
  253. vop_pflushinvalvp_t vop_flushinval_pages;
  254. vop_pflushvp_t vop_flush_pages;
  255. vop_release_t vop_release;
  256. vop_iflush_t vop_iflush;
  257. } vnodeops_t;
  258. /*
  259. * VOP's.
  260. */
  261. #define _VOP_(op, vp) (*((vnodeops_t *)(vp)->v_fops)->op)
  262. #define VOP_OPEN(vp, cr, rv) \
  263. rv = _VOP_(vop_open, vp)((vp)->v_fbhv, cr)
  264. #define VOP_CLOSE(vp, f, last, cr, rv) \
  265. rv = _VOP_(vop_close, vp)((vp)->v_fbhv, f, last, cr)
  266. #define VOP_READ(vp,file,iov,segs,offset,ioflags,cr,rv) \
  267. rv = _VOP_(vop_read, vp)((vp)->v_fbhv,file,iov,segs,offset,ioflags,cr)
  268. #define VOP_WRITE(vp,file,iov,segs,offset,ioflags,cr,rv) \
  269. rv = _VOP_(vop_write, vp)((vp)->v_fbhv,file,iov,segs,offset,ioflags,cr)
  270. #define VOP_SENDFILE(vp,f,off,ioflags,cnt,act,targ,cr,rv) \
  271. rv = _VOP_(vop_sendfile, vp)((vp)->v_fbhv,f,off,ioflags,cnt,act,targ,cr)
  272. #define VOP_SPLICE_READ(vp,f,o,pipe,cnt,fl,iofl,cr,rv) \
  273. rv = _VOP_(vop_splice_read, vp)((vp)->v_fbhv,f,o,pipe,cnt,fl,iofl,cr)
  274. #define VOP_SPLICE_WRITE(vp,f,o,pipe,cnt,fl,iofl,cr,rv) \
  275. rv = _VOP_(vop_splice_write, vp)((vp)->v_fbhv,f,o,pipe,cnt,fl,iofl,cr)
  276. #define VOP_BMAP(vp,of,sz,rw,b,n,rv) \
  277. rv = _VOP_(vop_bmap, vp)((vp)->v_fbhv,of,sz,rw,b,n)
  278. #define VOP_GETATTR(vp, vap, f, cr, rv) \
  279. rv = _VOP_(vop_getattr, vp)((vp)->v_fbhv, vap, f, cr)
  280. #define VOP_SETATTR(vp, vap, f, cr, rv) \
  281. rv = _VOP_(vop_setattr, vp)((vp)->v_fbhv, vap, f, cr)
  282. #define VOP_ACCESS(vp, mode, cr, rv) \
  283. rv = _VOP_(vop_access, vp)((vp)->v_fbhv, mode, cr)
  284. #define VOP_LOOKUP(vp,d,vpp,f,rdir,cr,rv) \
  285. rv = _VOP_(vop_lookup, vp)((vp)->v_fbhv,d,vpp,f,rdir,cr)
  286. #define VOP_CREATE(dvp,d,vap,vpp,cr,rv) \
  287. rv = _VOP_(vop_create, dvp)((dvp)->v_fbhv,d,vap,vpp,cr)
  288. #define VOP_REMOVE(dvp,d,cr,rv) \
  289. rv = _VOP_(vop_remove, dvp)((dvp)->v_fbhv,d,cr)
  290. #define VOP_LINK(tdvp,fvp,d,cr,rv) \
  291. rv = _VOP_(vop_link, tdvp)((tdvp)->v_fbhv,fvp,d,cr)
  292. #define VOP_RENAME(fvp,fnm,tdvp,tnm,cr,rv) \
  293. rv = _VOP_(vop_rename, fvp)((fvp)->v_fbhv,fnm,tdvp,tnm,cr)
  294. #define VOP_MKDIR(dp,d,vap,vpp,cr,rv) \
  295. rv = _VOP_(vop_mkdir, dp)((dp)->v_fbhv,d,vap,vpp,cr)
  296. #define VOP_RMDIR(dp,d,cr,rv) \
  297. rv = _VOP_(vop_rmdir, dp)((dp)->v_fbhv,d,cr)
  298. #define VOP_READDIR(vp,uiop,cr,eofp,rv) \
  299. rv = _VOP_(vop_readdir, vp)((vp)->v_fbhv,uiop,cr,eofp)
  300. #define VOP_SYMLINK(dvp,d,vap,tnm,vpp,cr,rv) \
  301. rv = _VOP_(vop_symlink, dvp) ((dvp)->v_fbhv,d,vap,tnm,vpp,cr)
  302. #define VOP_READLINK(vp,uiop,fl,cr,rv) \
  303. rv = _VOP_(vop_readlink, vp)((vp)->v_fbhv,uiop,fl,cr)
  304. #define VOP_FSYNC(vp,f,cr,b,e,rv) \
  305. rv = _VOP_(vop_fsync, vp)((vp)->v_fbhv,f,cr,b,e)
  306. #define VOP_INACTIVE(vp, cr, rv) \
  307. rv = _VOP_(vop_inactive, vp)((vp)->v_fbhv, cr)
  308. #define VOP_RELEASE(vp, rv) \
  309. rv = _VOP_(vop_release, vp)((vp)->v_fbhv)
  310. #define VOP_FID2(vp, fidp, rv) \
  311. rv = _VOP_(vop_fid2, vp)((vp)->v_fbhv, fidp)
  312. #define VOP_RWLOCK(vp,i) \
  313. (void)_VOP_(vop_rwlock, vp)((vp)->v_fbhv, i)
  314. #define VOP_RWLOCK_TRY(vp,i) \
  315. _VOP_(vop_rwlock, vp)((vp)->v_fbhv, i)
  316. #define VOP_RWUNLOCK(vp,i) \
  317. (void)_VOP_(vop_rwunlock, vp)((vp)->v_fbhv, i)
  318. #define VOP_FRLOCK(vp,c,fl,flags,offset,fr,rv) \
  319. rv = _VOP_(vop_frlock, vp)((vp)->v_fbhv,c,fl,flags,offset,fr)
  320. #define VOP_RECLAIM(vp, rv) \
  321. rv = _VOP_(vop_reclaim, vp)((vp)->v_fbhv)
  322. #define VOP_ATTR_GET(vp, name, val, vallenp, fl, cred, rv) \
  323. rv = _VOP_(vop_attr_get, vp)((vp)->v_fbhv,name,val,vallenp,fl,cred)
  324. #define VOP_ATTR_SET(vp, name, val, vallen, fl, cred, rv) \
  325. rv = _VOP_(vop_attr_set, vp)((vp)->v_fbhv,name,val,vallen,fl,cred)
  326. #define VOP_ATTR_REMOVE(vp, name, flags, cred, rv) \
  327. rv = _VOP_(vop_attr_remove, vp)((vp)->v_fbhv,name,flags,cred)
  328. #define VOP_ATTR_LIST(vp, buf, buflen, fl, cursor, cred, rv) \
  329. rv = _VOP_(vop_attr_list, vp)((vp)->v_fbhv,buf,buflen,fl,cursor,cred)
  330. #define VOP_LINK_REMOVED(vp, dvp, linkzero) \
  331. (void)_VOP_(vop_link_removed, vp)((vp)->v_fbhv, dvp, linkzero)
  332. #define VOP_VNODE_CHANGE(vp, cmd, val) \
  333. (void)_VOP_(vop_vnode_change, vp)((vp)->v_fbhv,cmd,val)
  334. /*
  335. * These are page cache functions that now go thru VOPs.
  336. * 'last' parameter is unused and left in for IRIX compatibility
  337. */
  338. #define VOP_TOSS_PAGES(vp, first, last, fiopt) \
  339. _VOP_(vop_tosspages, vp)((vp)->v_fbhv,first, last, fiopt)
  340. /*
  341. * 'last' parameter is unused and left in for IRIX compatibility
  342. */
  343. #define VOP_FLUSHINVAL_PAGES(vp, first, last, fiopt) \
  344. _VOP_(vop_flushinval_pages, vp)((vp)->v_fbhv,first,last,fiopt)
  345. /*
  346. * 'last' parameter is unused and left in for IRIX compatibility
  347. */
  348. #define VOP_FLUSH_PAGES(vp, first, last, flags, fiopt, rv) \
  349. rv = _VOP_(vop_flush_pages, vp)((vp)->v_fbhv,first,last,flags,fiopt)
  350. #define VOP_IOCTL(vp, inode, filp, fl, cmd, arg, rv) \
  351. rv = _VOP_(vop_ioctl, vp)((vp)->v_fbhv,inode,filp,fl,cmd,arg)
  352. #define VOP_IFLUSH(vp, flags, rv) \
  353. rv = _VOP_(vop_iflush, vp)((vp)->v_fbhv, flags)
  354. /*
  355. * Flags for read/write calls - same values as IRIX
  356. */
  357. #define IO_ISAIO 0x00001 /* don't wait for completion */
  358. #define IO_ISDIRECT 0x00004 /* bypass page cache */
  359. #define IO_INVIS 0x00020 /* don't update inode timestamps */
  360. /*
  361. * Flags for VOP_IFLUSH call
  362. */
  363. #define FLUSH_SYNC 1 /* wait for flush to complete */
  364. #define FLUSH_INODE 2 /* flush the inode itself */
  365. #define FLUSH_LOG 4 /* force the last log entry for
  366. * this inode out to disk */
  367. /*
  368. * Flush/Invalidate options for VOP_TOSS_PAGES, VOP_FLUSHINVAL_PAGES and
  369. * VOP_FLUSH_PAGES.
  370. */
  371. #define FI_NONE 0 /* none */
  372. #define FI_REMAPF 1 /* Do a remapf prior to the operation */
  373. #define FI_REMAPF_LOCKED 2 /* Do a remapf prior to the operation.
  374. Prevent VM access to the pages until
  375. the operation completes. */
  376. /*
  377. * Vnode attributes. va_mask indicates those attributes the caller
  378. * wants to set or extract.
  379. */
  380. typedef struct vattr {
  381. int va_mask; /* bit-mask of attributes present */
  382. mode_t va_mode; /* file access mode and type */
  383. xfs_nlink_t va_nlink; /* number of references to file */
  384. uid_t va_uid; /* owner user id */
  385. gid_t va_gid; /* owner group id */
  386. xfs_ino_t va_nodeid; /* file id */
  387. xfs_off_t va_size; /* file size in bytes */
  388. u_long va_blocksize; /* blocksize preferred for i/o */
  389. struct timespec va_atime; /* time of last access */
  390. struct timespec va_mtime; /* time of last modification */
  391. struct timespec va_ctime; /* time file changed */
  392. u_int va_gen; /* generation number of file */
  393. xfs_dev_t va_rdev; /* device the special file represents */
  394. __int64_t va_nblocks; /* number of blocks allocated */
  395. u_long va_xflags; /* random extended file flags */
  396. u_long va_extsize; /* file extent size */
  397. u_long va_nextents; /* number of extents in file */
  398. u_long va_anextents; /* number of attr extents in file */
  399. prid_t va_projid; /* project id */
  400. } vattr_t;
  401. /*
  402. * setattr or getattr attributes
  403. */
  404. #define XFS_AT_TYPE 0x00000001
  405. #define XFS_AT_MODE 0x00000002
  406. #define XFS_AT_UID 0x00000004
  407. #define XFS_AT_GID 0x00000008
  408. #define XFS_AT_FSID 0x00000010
  409. #define XFS_AT_NODEID 0x00000020
  410. #define XFS_AT_NLINK 0x00000040
  411. #define XFS_AT_SIZE 0x00000080
  412. #define XFS_AT_ATIME 0x00000100
  413. #define XFS_AT_MTIME 0x00000200
  414. #define XFS_AT_CTIME 0x00000400
  415. #define XFS_AT_RDEV 0x00000800
  416. #define XFS_AT_BLKSIZE 0x00001000
  417. #define XFS_AT_NBLOCKS 0x00002000
  418. #define XFS_AT_VCODE 0x00004000
  419. #define XFS_AT_MAC 0x00008000
  420. #define XFS_AT_UPDATIME 0x00010000
  421. #define XFS_AT_UPDMTIME 0x00020000
  422. #define XFS_AT_UPDCTIME 0x00040000
  423. #define XFS_AT_ACL 0x00080000
  424. #define XFS_AT_CAP 0x00100000
  425. #define XFS_AT_INF 0x00200000
  426. #define XFS_AT_XFLAGS 0x00400000
  427. #define XFS_AT_EXTSIZE 0x00800000
  428. #define XFS_AT_NEXTENTS 0x01000000
  429. #define XFS_AT_ANEXTENTS 0x02000000
  430. #define XFS_AT_PROJID 0x04000000
  431. #define XFS_AT_SIZE_NOPERM 0x08000000
  432. #define XFS_AT_GENCOUNT 0x10000000
  433. #define XFS_AT_ALL (XFS_AT_TYPE|XFS_AT_MODE|XFS_AT_UID|XFS_AT_GID|\
  434. XFS_AT_FSID|XFS_AT_NODEID|XFS_AT_NLINK|XFS_AT_SIZE|\
  435. XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME|XFS_AT_RDEV|\
  436. XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|XFS_AT_MAC|\
  437. XFS_AT_ACL|XFS_AT_CAP|XFS_AT_INF|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|\
  438. XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_PROJID|XFS_AT_GENCOUNT)
  439. #define XFS_AT_STAT (XFS_AT_TYPE|XFS_AT_MODE|XFS_AT_UID|XFS_AT_GID|\
  440. XFS_AT_FSID|XFS_AT_NODEID|XFS_AT_NLINK|XFS_AT_SIZE|\
  441. XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME|XFS_AT_RDEV|\
  442. XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_PROJID)
  443. #define XFS_AT_TIMES (XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME)
  444. #define XFS_AT_UPDTIMES (XFS_AT_UPDATIME|XFS_AT_UPDMTIME|XFS_AT_UPDCTIME)
  445. #define XFS_AT_NOSET (XFS_AT_NLINK|XFS_AT_RDEV|XFS_AT_FSID|XFS_AT_NODEID|\
  446. XFS_AT_TYPE|XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|\
  447. XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_GENCOUNT)
  448. /*
  449. * Modes.
  450. */
  451. #define VSUID S_ISUID /* set user id on execution */
  452. #define VSGID S_ISGID /* set group id on execution */
  453. #define VSVTX S_ISVTX /* save swapped text even after use */
  454. #define VREAD S_IRUSR /* read, write, execute permissions */
  455. #define VWRITE S_IWUSR
  456. #define VEXEC S_IXUSR
  457. #define MODEMASK S_IALLUGO /* mode bits plus permission bits */
  458. /*
  459. * Check whether mandatory file locking is enabled.
  460. */
  461. #define MANDLOCK(vp, mode) \
  462. (VN_ISREG(vp) && ((mode) & (VSGID|(VEXEC>>3))) == VSGID)
  463. extern void vn_init(void);
  464. extern vnode_t *vn_initialize(struct inode *);
  465. /*
  466. * vnode_map structures _must_ match vn_epoch and vnode structure sizes.
  467. */
  468. typedef struct vnode_map {
  469. bhv_vfs_t *v_vfsp;
  470. vnumber_t v_number; /* in-core vnode number */
  471. xfs_ino_t v_ino; /* inode # */
  472. } vmap_t;
  473. #define VMAP(vp, vmap) {(vmap).v_vfsp = (vp)->v_vfsp, \
  474. (vmap).v_number = (vp)->v_number, \
  475. (vmap).v_ino = (vp)->v_inode.i_ino; }
  476. extern int vn_revalidate(struct vnode *);
  477. extern int __vn_revalidate(struct vnode *, vattr_t *);
  478. extern void vn_revalidate_core(struct vnode *, vattr_t *);
  479. extern void vn_iowait(struct vnode *vp);
  480. extern void vn_iowake(struct vnode *vp);
  481. extern void vn_ioerror(struct vnode *vp, int error, char *f, int l);
  482. static inline int vn_count(struct vnode *vp)
  483. {
  484. return atomic_read(&vn_to_inode(vp)->i_count);
  485. }
  486. /*
  487. * Vnode reference counting functions (and macros for compatibility).
  488. */
  489. extern vnode_t *vn_hold(struct vnode *);
  490. #if defined(XFS_VNODE_TRACE)
  491. #define VN_HOLD(vp) \
  492. ((void)vn_hold(vp), \
  493. vn_trace_hold(vp, __FILE__, __LINE__, (inst_t *)__return_address))
  494. #define VN_RELE(vp) \
  495. (vn_trace_rele(vp, __FILE__, __LINE__, (inst_t *)__return_address), \
  496. iput(vn_to_inode(vp)))
  497. #else
  498. #define VN_HOLD(vp) ((void)vn_hold(vp))
  499. #define VN_RELE(vp) (iput(vn_to_inode(vp)))
  500. #endif
  501. static inline struct vnode *vn_grab(struct vnode *vp)
  502. {
  503. struct inode *inode = igrab(vn_to_inode(vp));
  504. return inode ? vn_from_inode(inode) : NULL;
  505. }
  506. /*
  507. * Vname handling macros.
  508. */
  509. #define VNAME(dentry) ((char *) (dentry)->d_name.name)
  510. #define VNAMELEN(dentry) ((dentry)->d_name.len)
  511. #define VNAME_TO_VNODE(dentry) (vn_from_inode((dentry)->d_inode))
  512. /*
  513. * Vnode spinlock manipulation.
  514. */
  515. #define VN_LOCK(vp) mutex_spinlock(&(vp)->v_lock)
  516. #define VN_UNLOCK(vp, s) mutex_spinunlock(&(vp)->v_lock, s)
  517. static __inline__ void vn_flagset(struct vnode *vp, uint flag)
  518. {
  519. spin_lock(&vp->v_lock);
  520. vp->v_flag |= flag;
  521. spin_unlock(&vp->v_lock);
  522. }
  523. static __inline__ uint vn_flagclr(struct vnode *vp, uint flag)
  524. {
  525. uint cleared;
  526. spin_lock(&vp->v_lock);
  527. cleared = (vp->v_flag & flag);
  528. vp->v_flag &= ~flag;
  529. spin_unlock(&vp->v_lock);
  530. return cleared;
  531. }
  532. #define VMODIFY(vp) vn_flagset(vp, VMODIFIED)
  533. #define VUNMODIFY(vp) vn_flagclr(vp, VMODIFIED)
  534. #define VTRUNCATE(vp) vn_flagset(vp, VTRUNCATED)
  535. #define VUNTRUNCATE(vp) vn_flagclr(vp, VTRUNCATED)
  536. /*
  537. * Dealing with bad inodes
  538. */
  539. static inline void vn_mark_bad(struct vnode *vp)
  540. {
  541. make_bad_inode(vn_to_inode(vp));
  542. }
  543. static inline int VN_BAD(struct vnode *vp)
  544. {
  545. return is_bad_inode(vn_to_inode(vp));
  546. }
  547. /*
  548. * Extracting atime values in various formats
  549. */
  550. static inline void vn_atime_to_bstime(struct vnode *vp, xfs_bstime_t *bs_atime)
  551. {
  552. bs_atime->tv_sec = vp->v_inode.i_atime.tv_sec;
  553. bs_atime->tv_nsec = vp->v_inode.i_atime.tv_nsec;
  554. }
  555. static inline void vn_atime_to_timespec(struct vnode *vp, struct timespec *ts)
  556. {
  557. *ts = vp->v_inode.i_atime;
  558. }
  559. static inline void vn_atime_to_time_t(struct vnode *vp, time_t *tt)
  560. {
  561. *tt = vp->v_inode.i_atime.tv_sec;
  562. }
  563. /*
  564. * Some useful predicates.
  565. */
  566. #define VN_MAPPED(vp) mapping_mapped(vn_to_inode(vp)->i_mapping)
  567. #define VN_CACHED(vp) (vn_to_inode(vp)->i_mapping->nrpages)
  568. #define VN_DIRTY(vp) mapping_tagged(vn_to_inode(vp)->i_mapping, \
  569. PAGECACHE_TAG_DIRTY)
  570. #define VN_TRUNC(vp) ((vp)->v_flag & VTRUNCATED)
  571. /*
  572. * Flags to VOP_SETATTR/VOP_GETATTR.
  573. */
  574. #define ATTR_UTIME 0x01 /* non-default utime(2) request */
  575. #define ATTR_DMI 0x08 /* invocation from a DMI function */
  576. #define ATTR_LAZY 0x80 /* set/get attributes lazily */
  577. #define ATTR_NONBLOCK 0x100 /* return EAGAIN if operation would block */
  578. #define ATTR_NOLOCK 0x200 /* Don't grab any conflicting locks */
  579. #define ATTR_NOSIZETOK 0x400 /* Don't get the SIZE token */
  580. /*
  581. * Flags to VOP_FSYNC and VOP_RECLAIM.
  582. */
  583. #define FSYNC_NOWAIT 0 /* asynchronous flush */
  584. #define FSYNC_WAIT 0x1 /* synchronous fsync or forced reclaim */
  585. #define FSYNC_INVAL 0x2 /* flush and invalidate cached data */
  586. #define FSYNC_DATA 0x4 /* synchronous fsync of data only */
  587. /*
  588. * Tracking vnode activity.
  589. */
  590. #if defined(XFS_VNODE_TRACE)
  591. #define VNODE_TRACE_SIZE 16 /* number of trace entries */
  592. #define VNODE_KTRACE_ENTRY 1
  593. #define VNODE_KTRACE_EXIT 2
  594. #define VNODE_KTRACE_HOLD 3
  595. #define VNODE_KTRACE_REF 4
  596. #define VNODE_KTRACE_RELE 5
  597. extern void vn_trace_entry(struct vnode *, const char *, inst_t *);
  598. extern void vn_trace_exit(struct vnode *, const char *, inst_t *);
  599. extern void vn_trace_hold(struct vnode *, char *, int, inst_t *);
  600. extern void vn_trace_ref(struct vnode *, char *, int, inst_t *);
  601. extern void vn_trace_rele(struct vnode *, char *, int, inst_t *);
  602. #define VN_TRACE(vp) \
  603. vn_trace_ref(vp, __FILE__, __LINE__, (inst_t *)__return_address)
  604. #else
  605. #define vn_trace_entry(a,b,c)
  606. #define vn_trace_exit(a,b,c)
  607. #define vn_trace_hold(a,b,c,d)
  608. #define vn_trace_ref(a,b,c,d)
  609. #define vn_trace_rele(a,b,c,d)
  610. #define VN_TRACE(vp)
  611. #endif
  612. #endif /* __XFS_VNODE_H__ */