dqblk_xfs.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * Copyright (c) 1995-2001,2004 Silicon Graphics, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public License
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU Lesser General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Lesset General Public License
  14. * along with this program; if not, write to the Free Software Foundation,
  15. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  16. */
  17. #ifndef _LINUX_DQBLK_XFS_H
  18. #define _LINUX_DQBLK_XFS_H
  19. #include <linux/types.h>
  20. /*
  21. * Disk quota - quotactl(2) commands for the XFS Quota Manager (XQM).
  22. */
  23. #define XQM_CMD(x) (('X'<<8)+(x)) /* note: forms first QCMD argument */
  24. #define XQM_COMMAND(x) (((x) & (0xff<<8)) == ('X'<<8)) /* test if for XFS */
  25. #define XQM_USRQUOTA 0 /* system call user quota type */
  26. #define XQM_GRPQUOTA 1 /* system call group quota type */
  27. #define XQM_PRJQUOTA 2 /* system call project quota type */
  28. #define XQM_MAXQUOTAS 3
  29. #define Q_XQUOTAON XQM_CMD(1) /* enable accounting/enforcement */
  30. #define Q_XQUOTAOFF XQM_CMD(2) /* disable accounting/enforcement */
  31. #define Q_XGETQUOTA XQM_CMD(3) /* get disk limits and usage */
  32. #define Q_XSETQLIM XQM_CMD(4) /* set disk limits */
  33. #define Q_XGETQSTAT XQM_CMD(5) /* get quota subsystem status */
  34. #define Q_XQUOTARM XQM_CMD(6) /* free disk space used by dquots */
  35. #define Q_XQUOTASYNC XQM_CMD(7) /* delalloc flush, updates dquots */
  36. /*
  37. * fs_disk_quota structure:
  38. *
  39. * This contains the current quota information regarding a user/proj/group.
  40. * It is 64-bit aligned, and all the blk units are in BBs (Basic Blocks) of
  41. * 512 bytes.
  42. */
  43. #define FS_DQUOT_VERSION 1 /* fs_disk_quota.d_version */
  44. typedef struct fs_disk_quota {
  45. __s8 d_version; /* version of this structure */
  46. __s8 d_flags; /* FS_{USER,PROJ,GROUP}_QUOTA */
  47. __u16 d_fieldmask; /* field specifier */
  48. __u32 d_id; /* user, project, or group ID */
  49. __u64 d_blk_hardlimit;/* absolute limit on disk blks */
  50. __u64 d_blk_softlimit;/* preferred limit on disk blks */
  51. __u64 d_ino_hardlimit;/* maximum # allocated inodes */
  52. __u64 d_ino_softlimit;/* preferred inode limit */
  53. __u64 d_bcount; /* # disk blocks owned by the user */
  54. __u64 d_icount; /* # inodes owned by the user */
  55. __s32 d_itimer; /* zero if within inode limits */
  56. /* if not, we refuse service */
  57. __s32 d_btimer; /* similar to above; for disk blocks */
  58. __u16 d_iwarns; /* # warnings issued wrt num inodes */
  59. __u16 d_bwarns; /* # warnings issued wrt disk blocks */
  60. __s32 d_padding2; /* padding2 - for future use */
  61. __u64 d_rtb_hardlimit;/* absolute limit on realtime blks */
  62. __u64 d_rtb_softlimit;/* preferred limit on RT disk blks */
  63. __u64 d_rtbcount; /* # realtime blocks owned */
  64. __s32 d_rtbtimer; /* similar to above; for RT disk blks */
  65. __u16 d_rtbwarns; /* # warnings issued wrt RT disk blks */
  66. __s16 d_padding3; /* padding3 - for future use */
  67. char d_padding4[8]; /* yet more padding */
  68. } fs_disk_quota_t;
  69. /*
  70. * These fields are sent to Q_XSETQLIM to specify fields that need to change.
  71. */
  72. #define FS_DQ_ISOFT (1<<0)
  73. #define FS_DQ_IHARD (1<<1)
  74. #define FS_DQ_BSOFT (1<<2)
  75. #define FS_DQ_BHARD (1<<3)
  76. #define FS_DQ_RTBSOFT (1<<4)
  77. #define FS_DQ_RTBHARD (1<<5)
  78. #define FS_DQ_LIMIT_MASK (FS_DQ_ISOFT | FS_DQ_IHARD | FS_DQ_BSOFT | \
  79. FS_DQ_BHARD | FS_DQ_RTBSOFT | FS_DQ_RTBHARD)
  80. /*
  81. * These timers can only be set in super user's dquot. For others, timers are
  82. * automatically started and stopped. Superusers timer values set the limits
  83. * for the rest. In case these values are zero, the DQ_{F,B}TIMELIMIT values
  84. * defined below are used.
  85. * These values also apply only to the d_fieldmask field for Q_XSETQLIM.
  86. */
  87. #define FS_DQ_BTIMER (1<<6)
  88. #define FS_DQ_ITIMER (1<<7)
  89. #define FS_DQ_RTBTIMER (1<<8)
  90. #define FS_DQ_TIMER_MASK (FS_DQ_BTIMER | FS_DQ_ITIMER | FS_DQ_RTBTIMER)
  91. /*
  92. * Warning counts are set in both super user's dquot and others. For others,
  93. * warnings are set/cleared by the administrators (or automatically by going
  94. * below the soft limit). Superusers warning values set the warning limits
  95. * for the rest. In case these values are zero, the DQ_{F,B}WARNLIMIT values
  96. * defined below are used.
  97. * These values also apply only to the d_fieldmask field for Q_XSETQLIM.
  98. */
  99. #define FS_DQ_BWARNS (1<<9)
  100. #define FS_DQ_IWARNS (1<<10)
  101. #define FS_DQ_RTBWARNS (1<<11)
  102. #define FS_DQ_WARNS_MASK (FS_DQ_BWARNS | FS_DQ_IWARNS | FS_DQ_RTBWARNS)
  103. /*
  104. * Accounting values. These can only be set for filesystem with
  105. * non-transactional quotas that require quotacheck(8) in userspace.
  106. */
  107. #define FS_DQ_BCOUNT (1<<12)
  108. #define FS_DQ_ICOUNT (1<<13)
  109. #define FS_DQ_RTBCOUNT (1<<14)
  110. #define FS_DQ_ACCT_MASK (FS_DQ_BCOUNT | FS_DQ_ICOUNT | FS_DQ_RTBCOUNT)
  111. /*
  112. * Various flags related to quotactl(2).
  113. */
  114. #define FS_QUOTA_UDQ_ACCT (1<<0) /* user quota accounting */
  115. #define FS_QUOTA_UDQ_ENFD (1<<1) /* user quota limits enforcement */
  116. #define FS_QUOTA_GDQ_ACCT (1<<2) /* group quota accounting */
  117. #define FS_QUOTA_GDQ_ENFD (1<<3) /* group quota limits enforcement */
  118. #define FS_QUOTA_PDQ_ACCT (1<<4) /* project quota accounting */
  119. #define FS_QUOTA_PDQ_ENFD (1<<5) /* project quota limits enforcement */
  120. #define FS_USER_QUOTA (1<<0) /* user quota type */
  121. #define FS_PROJ_QUOTA (1<<1) /* project quota type */
  122. #define FS_GROUP_QUOTA (1<<2) /* group quota type */
  123. /*
  124. * fs_quota_stat is the struct returned in Q_XGETQSTAT for a given file system.
  125. * Provides a centralized way to get meta information about the quota subsystem.
  126. * eg. space taken up for user and group quotas, number of dquots currently
  127. * incore.
  128. */
  129. #define FS_QSTAT_VERSION 1 /* fs_quota_stat.qs_version */
  130. /*
  131. * Some basic information about 'quota files'.
  132. */
  133. typedef struct fs_qfilestat {
  134. __u64 qfs_ino; /* inode number */
  135. __u64 qfs_nblks; /* number of BBs 512-byte-blks */
  136. __u32 qfs_nextents; /* number of extents */
  137. } fs_qfilestat_t;
  138. typedef struct fs_quota_stat {
  139. __s8 qs_version; /* version number for future changes */
  140. __u16 qs_flags; /* FS_QUOTA_{U,P,G}DQ_{ACCT,ENFD} */
  141. __s8 qs_pad; /* unused */
  142. fs_qfilestat_t qs_uquota; /* user quota storage information */
  143. fs_qfilestat_t qs_gquota; /* group quota storage information */
  144. __u32 qs_incoredqs; /* number of dquots incore */
  145. __s32 qs_btimelimit; /* limit for blks timer */
  146. __s32 qs_itimelimit; /* limit for inodes timer */
  147. __s32 qs_rtbtimelimit;/* limit for rt blks timer */
  148. __u16 qs_bwarnlimit; /* limit for num warnings */
  149. __u16 qs_iwarnlimit; /* limit for num warnings */
  150. } fs_quota_stat_t;
  151. #endif /* _LINUX_DQBLK_XFS_H */