fid.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * V9FS FID Management
  4. *
  5. * Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com>
  6. */
  7. #ifndef FS_9P_FID_H
  8. #define FS_9P_FID_H
  9. #include <linux/list.h>
  10. #include "v9fs.h"
  11. struct p9_fid *v9fs_fid_find_inode(struct inode *inode, bool want_writeable,
  12. kuid_t uid, bool any);
  13. struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
  14. static inline struct p9_fid *v9fs_parent_fid(struct dentry *dentry)
  15. {
  16. return v9fs_fid_lookup(dentry->d_parent);
  17. }
  18. void v9fs_fid_add(struct dentry *dentry, struct p9_fid **fid);
  19. void v9fs_open_fid_add(struct inode *inode, struct p9_fid **fid);
  20. static inline struct p9_fid *clone_fid(struct p9_fid *fid)
  21. {
  22. return IS_ERR(fid) ? fid : p9_client_walk(fid, 0, NULL, 1);
  23. }
  24. static inline struct p9_fid *v9fs_fid_clone(struct dentry *dentry)
  25. {
  26. struct p9_fid *fid, *nfid;
  27. fid = v9fs_fid_lookup(dentry);
  28. if (!fid || IS_ERR(fid))
  29. return fid;
  30. nfid = clone_fid(fid);
  31. p9_fid_put(fid);
  32. return nfid;
  33. }
  34. /**
  35. * v9fs_fid_addmodes - add cache flags to fid mode (for client use only)
  36. * @fid: fid to augment
  37. * @s_flags: session info mount flags
  38. * @s_cache: session info cache flags
  39. * @f_flags: unix open flags
  40. *
  41. * make sure mode reflects flags of underlying mounts
  42. * also qid.version == 0 reflects a synthetic or legacy file system
  43. * NOTE: these are set after open so only reflect 9p client not
  44. * underlying file system on server.
  45. */
  46. static inline void v9fs_fid_add_modes(struct p9_fid *fid, unsigned int s_flags,
  47. unsigned int s_cache, unsigned int f_flags)
  48. {
  49. if ((!s_cache) ||
  50. ((fid->qid.version == 0) && !(s_flags & V9FS_IGNORE_QV)) ||
  51. (s_flags & V9FS_DIRECT_IO) || (f_flags & O_DIRECT)) {
  52. fid->mode |= P9L_DIRECT; /* no read or write cache */
  53. } else if ((!(s_cache & CACHE_WRITEBACK)) ||
  54. (f_flags & O_DSYNC) || (s_flags & V9FS_SYNC)) {
  55. fid->mode |= P9L_NOWRITECACHE;
  56. }
  57. }
  58. #endif