filecache.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #ifndef _FS_NFSD_FILECACHE_H
  2. #define _FS_NFSD_FILECACHE_H
  3. #include <linux/fsnotify_backend.h>
  4. /*
  5. * This is the fsnotify_mark container that nfsd attaches to the files that it
  6. * is holding open. Note that we have a separate refcount here aside from the
  7. * one in the fsnotify_mark. We only want a single fsnotify_mark attached to
  8. * the inode, and for each nfsd_file to hold a reference to it.
  9. *
  10. * The fsnotify_mark is itself refcounted, but that's not sufficient to tell us
  11. * how to put that reference. If there are still outstanding nfsd_files that
  12. * reference the mark, then we would want to call fsnotify_put_mark on it.
  13. * If there were not, then we'd need to call fsnotify_destroy_mark. Since we
  14. * can't really tell the difference, we use the nfm_mark to keep track of how
  15. * many nfsd_files hold references to the mark. When that counter goes to zero
  16. * then we know to call fsnotify_destroy_mark on it.
  17. */
  18. struct nfsd_file_mark {
  19. struct fsnotify_mark nfm_mark;
  20. refcount_t nfm_ref;
  21. };
  22. /*
  23. * A representation of a file that has been opened by knfsd. These are hashed
  24. * in the hashtable by inode pointer value. Note that this object doesn't
  25. * hold a reference to the inode by itself, so the nf_inode pointer should
  26. * never be dereferenced, only used for comparison.
  27. */
  28. struct nfsd_file {
  29. struct rhlist_head nf_rlist;
  30. void *nf_inode;
  31. struct file *nf_file;
  32. const struct cred *nf_cred;
  33. struct net *nf_net;
  34. #define NFSD_FILE_HASHED (0)
  35. #define NFSD_FILE_PENDING (1)
  36. #define NFSD_FILE_REFERENCED (2)
  37. #define NFSD_FILE_GC (3)
  38. unsigned long nf_flags;
  39. refcount_t nf_ref;
  40. unsigned char nf_may;
  41. struct nfsd_file_mark *nf_mark;
  42. struct list_head nf_lru;
  43. struct list_head nf_gc;
  44. struct rcu_head nf_rcu;
  45. ktime_t nf_birthtime;
  46. };
  47. int nfsd_file_cache_init(void);
  48. void nfsd_file_cache_purge(struct net *);
  49. void nfsd_file_cache_shutdown(void);
  50. int nfsd_file_cache_start_net(struct net *net);
  51. void nfsd_file_cache_shutdown_net(struct net *net);
  52. void nfsd_file_put(struct nfsd_file *nf);
  53. struct net *nfsd_file_put_local(struct nfsd_file *nf);
  54. struct nfsd_file *nfsd_file_get(struct nfsd_file *nf);
  55. struct file *nfsd_file_file(struct nfsd_file *nf);
  56. void nfsd_file_close_inode_sync(struct inode *inode);
  57. void nfsd_file_net_dispose(struct nfsd_net *nn);
  58. bool nfsd_file_is_cached(struct inode *inode);
  59. __be32 nfsd_file_acquire_gc(struct svc_rqst *rqstp, struct svc_fh *fhp,
  60. unsigned int may_flags, struct nfsd_file **nfp);
  61. __be32 nfsd_file_acquire(struct svc_rqst *rqstp, struct svc_fh *fhp,
  62. unsigned int may_flags, struct nfsd_file **nfp);
  63. __be32 nfsd_file_acquire_opened(struct svc_rqst *rqstp, struct svc_fh *fhp,
  64. unsigned int may_flags, struct file *file,
  65. struct nfsd_file **nfp);
  66. __be32 nfsd_file_acquire_local(struct net *net, struct svc_cred *cred,
  67. struct auth_domain *client, struct svc_fh *fhp,
  68. unsigned int may_flags, struct nfsd_file **pnf);
  69. int nfsd_file_cache_stats_show(struct seq_file *m, void *v);
  70. #endif /* _FS_NFSD_FILECACHE_H */