xfs_qm.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  4. * All Rights Reserved.
  5. */
  6. #ifndef __XFS_QM_H__
  7. #define __XFS_QM_H__
  8. #include "xfs_dquot_item.h"
  9. #include "xfs_dquot.h"
  10. struct xfs_inode;
  11. extern struct kmem_zone *xfs_qm_dqtrxzone;
  12. /*
  13. * Number of bmaps that we ask from bmapi when doing a quotacheck.
  14. * We make this restriction to keep the memory usage to a minimum.
  15. */
  16. #define XFS_DQITER_MAP_SIZE 10
  17. #define XFS_IS_DQUOT_UNINITIALIZED(dqp) ( \
  18. !dqp->q_core.d_blk_hardlimit && \
  19. !dqp->q_core.d_blk_softlimit && \
  20. !dqp->q_core.d_rtb_hardlimit && \
  21. !dqp->q_core.d_rtb_softlimit && \
  22. !dqp->q_core.d_ino_hardlimit && \
  23. !dqp->q_core.d_ino_softlimit && \
  24. !dqp->q_core.d_bcount && \
  25. !dqp->q_core.d_rtbcount && \
  26. !dqp->q_core.d_icount)
  27. /*
  28. * This defines the unit of allocation of dquots.
  29. * Currently, it is just one file system block, and a 4K blk contains 30
  30. * (136 * 30 = 4080) dquots. It's probably not worth trying to make
  31. * this more dynamic.
  32. * XXXsup However, if this number is changed, we have to make sure that we don't
  33. * implicitly assume that we do allocations in chunks of a single filesystem
  34. * block in the dquot/xqm code.
  35. */
  36. #define XFS_DQUOT_CLUSTER_SIZE_FSB (xfs_filblks_t)1
  37. struct xfs_def_quota {
  38. xfs_qcnt_t bhardlimit; /* default data blk hard limit */
  39. xfs_qcnt_t bsoftlimit; /* default data blk soft limit */
  40. xfs_qcnt_t ihardlimit; /* default inode count hard limit */
  41. xfs_qcnt_t isoftlimit; /* default inode count soft limit */
  42. xfs_qcnt_t rtbhardlimit; /* default realtime blk hard limit */
  43. xfs_qcnt_t rtbsoftlimit; /* default realtime blk soft limit */
  44. };
  45. /*
  46. * Various quota information for individual filesystems.
  47. * The mount structure keeps a pointer to this.
  48. */
  49. typedef struct xfs_quotainfo {
  50. struct radix_tree_root qi_uquota_tree;
  51. struct radix_tree_root qi_gquota_tree;
  52. struct radix_tree_root qi_pquota_tree;
  53. struct mutex qi_tree_lock;
  54. struct xfs_inode *qi_uquotaip; /* user quota inode */
  55. struct xfs_inode *qi_gquotaip; /* group quota inode */
  56. struct xfs_inode *qi_pquotaip; /* project quota inode */
  57. struct list_lru qi_lru;
  58. int qi_dquots;
  59. time_t qi_btimelimit; /* limit for blks timer */
  60. time_t qi_itimelimit; /* limit for inodes timer */
  61. time_t qi_rtbtimelimit;/* limit for rt blks timer */
  62. xfs_qwarncnt_t qi_bwarnlimit; /* limit for blks warnings */
  63. xfs_qwarncnt_t qi_iwarnlimit; /* limit for inodes warnings */
  64. xfs_qwarncnt_t qi_rtbwarnlimit;/* limit for rt blks warnings */
  65. struct mutex qi_quotaofflock;/* to serialize quotaoff */
  66. xfs_filblks_t qi_dqchunklen; /* # BBs in a chunk of dqs */
  67. uint qi_dqperchunk; /* # ondisk dqs in above chunk */
  68. struct xfs_def_quota qi_usr_default;
  69. struct xfs_def_quota qi_grp_default;
  70. struct xfs_def_quota qi_prj_default;
  71. struct shrinker qi_shrinker;
  72. } xfs_quotainfo_t;
  73. static inline struct radix_tree_root *
  74. xfs_dquot_tree(
  75. struct xfs_quotainfo *qi,
  76. int type)
  77. {
  78. switch (type) {
  79. case XFS_DQ_USER:
  80. return &qi->qi_uquota_tree;
  81. case XFS_DQ_GROUP:
  82. return &qi->qi_gquota_tree;
  83. case XFS_DQ_PROJ:
  84. return &qi->qi_pquota_tree;
  85. default:
  86. ASSERT(0);
  87. }
  88. return NULL;
  89. }
  90. static inline struct xfs_inode *
  91. xfs_quota_inode(xfs_mount_t *mp, uint dq_flags)
  92. {
  93. switch (dq_flags & XFS_DQ_ALLTYPES) {
  94. case XFS_DQ_USER:
  95. return mp->m_quotainfo->qi_uquotaip;
  96. case XFS_DQ_GROUP:
  97. return mp->m_quotainfo->qi_gquotaip;
  98. case XFS_DQ_PROJ:
  99. return mp->m_quotainfo->qi_pquotaip;
  100. default:
  101. ASSERT(0);
  102. }
  103. return NULL;
  104. }
  105. extern void xfs_trans_mod_dquot(struct xfs_trans *,
  106. struct xfs_dquot *, uint, long);
  107. extern int xfs_trans_reserve_quota_bydquots(struct xfs_trans *,
  108. struct xfs_mount *, struct xfs_dquot *,
  109. struct xfs_dquot *, struct xfs_dquot *,
  110. long, long, uint);
  111. extern void xfs_trans_dqjoin(struct xfs_trans *, struct xfs_dquot *);
  112. extern void xfs_trans_log_dquot(struct xfs_trans *, struct xfs_dquot *);
  113. /*
  114. * We keep the usr, grp, and prj dquots separately so that locking will be
  115. * easier to do at commit time. All transactions that we know of at this point
  116. * affect no more than two dquots of one type. Hence, the TRANS_MAXDQS value.
  117. */
  118. enum {
  119. XFS_QM_TRANS_USR = 0,
  120. XFS_QM_TRANS_GRP,
  121. XFS_QM_TRANS_PRJ,
  122. XFS_QM_TRANS_DQTYPES
  123. };
  124. #define XFS_QM_TRANS_MAXDQS 2
  125. struct xfs_dquot_acct {
  126. struct xfs_dqtrx dqs[XFS_QM_TRANS_DQTYPES][XFS_QM_TRANS_MAXDQS];
  127. };
  128. /*
  129. * Users are allowed to have a usage exceeding their softlimit for
  130. * a period this long.
  131. */
  132. #define XFS_QM_BTIMELIMIT (7 * 24*60*60) /* 1 week */
  133. #define XFS_QM_RTBTIMELIMIT (7 * 24*60*60) /* 1 week */
  134. #define XFS_QM_ITIMELIMIT (7 * 24*60*60) /* 1 week */
  135. #define XFS_QM_BWARNLIMIT 5
  136. #define XFS_QM_IWARNLIMIT 5
  137. #define XFS_QM_RTBWARNLIMIT 5
  138. extern void xfs_qm_destroy_quotainfo(struct xfs_mount *);
  139. /* dquot stuff */
  140. extern void xfs_qm_dqpurge_all(struct xfs_mount *, uint);
  141. extern void xfs_qm_dqrele_all_inodes(struct xfs_mount *, uint);
  142. /* quota ops */
  143. extern int xfs_qm_scall_trunc_qfiles(struct xfs_mount *, uint);
  144. extern int xfs_qm_scall_getquota(struct xfs_mount *, xfs_dqid_t,
  145. uint, struct qc_dqblk *);
  146. extern int xfs_qm_scall_getquota_next(struct xfs_mount *,
  147. xfs_dqid_t *, uint, struct qc_dqblk *);
  148. extern int xfs_qm_scall_setqlim(struct xfs_mount *, xfs_dqid_t, uint,
  149. struct qc_dqblk *);
  150. extern int xfs_qm_scall_quotaon(struct xfs_mount *, uint);
  151. extern int xfs_qm_scall_quotaoff(struct xfs_mount *, uint);
  152. static inline struct xfs_def_quota *
  153. xfs_get_defquota(struct xfs_dquot *dqp, struct xfs_quotainfo *qi)
  154. {
  155. struct xfs_def_quota *defq;
  156. if (XFS_QM_ISUDQ(dqp))
  157. defq = &qi->qi_usr_default;
  158. else if (XFS_QM_ISGDQ(dqp))
  159. defq = &qi->qi_grp_default;
  160. else {
  161. ASSERT(XFS_QM_ISPDQ(dqp));
  162. defq = &qi->qi_prj_default;
  163. }
  164. return defq;
  165. }
  166. #endif /* __XFS_QM_H__ */