quota.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * Robert Elz at The University of Melbourne.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *   This product includes software developed by the University of
  19.  *   California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  *
  36.  * Version: $Id: quota.h,v 2.0 1996/11/17 16:48:14 mvw Exp mvw $
  37.  */
  38. #ifndef _LINUX_QUOTA_
  39. #define _LINUX_QUOTA_
  40. #include <linux/errno.h>
  41. /*
  42.  * Convert diskblocks to blocks and the other way around.
  43.  */
  44. #define dbtob(num) (num << BLOCK_SIZE_BITS)
  45. #define btodb(num) (num >> BLOCK_SIZE_BITS)
  46. /*
  47.  * Convert count of filesystem blocks to diskquota blocks, meant
  48.  * for filesystems where i_blksize != BLOCK_SIZE
  49.  */
  50. #define fs_to_dq_blocks(num, blksize) (((num) * (blksize)) / BLOCK_SIZE)
  51. /*
  52.  * Definitions for disk quotas imposed on the average user
  53.  * (big brother finally hits Linux).
  54.  *
  55.  * The following constants define the amount of time given a user
  56.  * before the soft limits are treated as hard limits (usually resulting
  57.  * in an allocation failure). The timer is started when the user crosses
  58.  * their soft limit, it is reset when they go below their soft limit.
  59.  */
  60. #define MAX_IQ_TIME  604800 /* (7*24*60*60) 1 week */
  61. #define MAX_DQ_TIME  604800 /* (7*24*60*60) 1 week */
  62. #define MAXQUOTAS 2
  63. #define USRQUOTA  0 /* element used for user quotas */
  64. #define GRPQUOTA  1 /* element used for group quotas */
  65. /*
  66.  * Definitions for the default names of the quotas files.
  67.  */
  68. #define INITQFNAMES { 
  69. "user",    /* USRQUOTA */ 
  70. "group",   /* GRPQUOTA */ 
  71. "undefined", 
  72. };
  73. #define QUOTAFILENAME "quota"
  74. #define QUOTAGROUP "staff"
  75. /*
  76.  * Command definitions for the 'quotactl' system call.
  77.  * The commands are broken into a main command defined below
  78.  * and a subcommand that is used to convey the type of
  79.  * quota that is being manipulated (see above).
  80.  */
  81. #define SUBCMDMASK  0x00ff
  82. #define SUBCMDSHIFT 8
  83. #define QCMD(cmd, type)  (((cmd) << SUBCMDSHIFT) | ((type) & SUBCMDMASK))
  84. #define Q_QUOTAON  0x0100 /* enable quotas */
  85. #define Q_QUOTAOFF 0x0200 /* disable quotas */
  86. #define Q_GETQUOTA 0x0300 /* get limits and usage */
  87. #define Q_SETQUOTA 0x0400 /* set limits and usage */
  88. #define Q_SETUSE   0x0500 /* set usage */
  89. #define Q_SYNC     0x0600 /* sync disk copy of a filesystems quotas */
  90. #define Q_SETQLIM  0x0700 /* set limits */
  91. #define Q_GETSTATS 0x0800 /* get collected stats */
  92. #define Q_RSQUASH  0x1000 /* set root_squash option */
  93. /*
  94.  * The following structure defines the format of the disk quota file
  95.  * (as it appears on disk) - the file is an array of these structures
  96.  * indexed by user or group number.
  97.  */
  98. struct dqblk {
  99. __u32 dqb_bhardlimit; /* absolute limit on disk blks alloc */
  100. __u32 dqb_bsoftlimit; /* preferred limit on disk blks */
  101. __u32 dqb_curblocks; /* current block count */
  102. __u32 dqb_ihardlimit; /* absolute limit on allocated inodes */
  103. __u32 dqb_isoftlimit; /* preferred inode limit */
  104. __u32 dqb_curinodes; /* current # allocated inodes */
  105. time_t dqb_btime; /* time limit for excessive disk use */
  106. time_t dqb_itime; /* time limit for excessive inode use */
  107. };
  108. /*
  109.  * Shorthand notation.
  110.  */
  111. #define dq_bhardlimit dq_dqb.dqb_bhardlimit
  112. #define dq_bsoftlimit dq_dqb.dqb_bsoftlimit
  113. #define dq_curblocks dq_dqb.dqb_curblocks
  114. #define dq_ihardlimit dq_dqb.dqb_ihardlimit
  115. #define dq_isoftlimit dq_dqb.dqb_isoftlimit
  116. #define dq_curinodes dq_dqb.dqb_curinodes
  117. #define dq_btime dq_dqb.dqb_btime
  118. #define dq_itime dq_dqb.dqb_itime
  119. #define dqoff(UID)      ((loff_t)((UID) * sizeof (struct dqblk)))
  120. struct dqstats {
  121. __u32 lookups;
  122. __u32 drops;
  123. __u32 reads;
  124. __u32 writes;
  125. __u32 cache_hits;
  126. __u32 allocated_dquots;
  127. __u32 free_dquots;
  128. __u32 syncs;
  129. };
  130. #ifdef __KERNEL__
  131. extern int nr_dquots, nr_free_dquots;
  132. extern int dquot_root_squash;
  133. #define NR_DQHASH 43            /* Just an arbitrary number */
  134. #define DQ_LOCKED     0x01 /* dquot under IO */
  135. #define DQ_MOD        0x02 /* dquot modified since read */
  136. #define DQ_BLKS       0x10 /* uid/gid has been warned about blk limit */
  137. #define DQ_INODES     0x20 /* uid/gid has been warned about inode limit */
  138. #define DQ_FAKE       0x40 /* no limits only usage */
  139. #define DQ_INVAL      0x80 /* dquot is going to be invalidated */
  140. struct dquot {
  141. struct list_head dq_hash; /* Hash list in memory */
  142. struct list_head dq_inuse; /* List of all quotas */
  143. struct list_head dq_free; /* Free list element */
  144. wait_queue_head_t dq_wait_lock; /* Pointer to waitqueue on dquot lock */
  145. wait_queue_head_t dq_wait_free; /* Pointer to waitqueue for quota to be unused */
  146. int dq_count; /* Reference count */
  147. /* fields after this point are cleared when invalidating */
  148. struct super_block *dq_sb; /* superblock this applies to */
  149. unsigned int dq_id; /* ID this applies to (uid, gid) */
  150. kdev_t dq_dev; /* Device this applies to */
  151. short dq_type; /* Type of quota */
  152. short dq_flags; /* See DQ_* */
  153. unsigned long dq_referenced; /* Number of times this dquot was 
  154.    referenced during its lifetime */
  155. struct dqblk dq_dqb; /* Diskquota usage */
  156. };
  157. #define NODQUOT (struct dquot *)NULL
  158. /*
  159.  * Flags used for set_dqblk.
  160.  */
  161. #define SET_QUOTA         0x02
  162. #define SET_USE           0x04
  163. #define SET_QLIMIT        0x08
  164. #define QUOTA_OK          0
  165. #define NO_QUOTA          1
  166. #else
  167. # /* nodep */ include <sys/cdefs.h>
  168. __BEGIN_DECLS
  169. long quotactl __P ((int, const char *, int, caddr_t));
  170. __END_DECLS
  171. #endif /* __KERNEL__ */
  172. #endif /* _QUOTA_ */