1 .\" Copyright (c) 1983, 1990, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Robert Elz at The University of Melbourne.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\" may be used to endorse or promote products derived from this software
17 .\" without specific prior written permission.
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" @(#)quotactl.2 8.2 (Berkeley) 3/10/95
32 .\" $FreeBSD: src/lib/libc/sys/quotactl.2,v 1.12.2.7 2002/05/20 09:06:37 roam Exp $
33 .\" $DragonFly: src/lib/libc/sys/quotactl.2,v 1.4 2006/05/26 19:39:37 swildner Exp $
40 .Nd manipulate filesystem quotas
47 .Fn quotactl "const char *path" "int cmd" "int id" "void *addr"
51 call enables, disables and
52 manipulates filesystem quotas.
53 A quota control command
56 operates on the given filename
60 (NOTE: One should use the QCMD macro defined in
62 to formulate the value for
64 The address of an optional command specific data structure,
66 may be given; its interpretation
67 is discussed below with each command.
69 Currently quotas are supported only for the
74 a command is composed of a primary command (see below)
75 and a command type used to interpret the
77 Types are supported for interpretation of user identifiers (USRQUOTA)
78 and group identifiers (GRPQUOTA).
81 specific commands are:
82 .Bl -tag -width Q_QUOTAOFFxx
84 Enable disk quotas for the filesystem specified by
86 The command type specifies the type of the quotas being enabled.
89 argument specifies a file from which to take the quotas.
90 The quota file must exist;
91 it is normally created with the
97 Only the super-user may turn quotas on.
99 Disable disk quotas for the filesystem specified by
101 The command type specifies the type of the quotas being disabled.
106 arguments are unused.
107 Only the super-user may turn quotas off.
109 Get disk quota limits and current usage for the user or group
110 (as determined by the command type) with identifier
115 structure (defined in
116 .In ufs/ufs/quota.h ) .
118 Set disk quota limits for the user or group
119 (as determined by the command type) with identifier
124 structure (defined in
125 .In ufs/ufs/quota.h ) .
126 The usage fields of the
128 structure are ignored.
129 This call is restricted to the super-user.
131 Set disk usage limits for the user or group
132 (as determined by the command type) with identifier
137 structure (defined in
138 .In ufs/ufs/quota.h ) .
139 Only the usage fields are used.
140 This call is restricted to the super-user.
142 Update the on-disk copy of quota usages.
143 The command type specifies which type of quotas are to be updated.
148 parameters are ignored.
158 The kernel has not been compiled with the
162 The quota table cannot be expanded.
165 or the command type is invalid.
170 quotas are not currently enabled for this filesystem.
174 the quota file is not a plain file.
176 Search permission is denied for a component of a path prefix.
178 A component of a path prefix was not a directory.
179 .It Bq Er ENAMETOOLONG
180 A component of either pathname exceeded 255 characters,
181 or the entire length of either path name exceeded 1023 characters.
183 A filename does not exist.
185 Too many symbolic links were encountered in translating a pathname.
189 the quota file resides on a read-only filesystem.
193 error occurred while reading from or writing
194 to a file containing quotas.
198 was supplied; the associated structure could not be copied in or out
202 points outside the process's allocated address space.
204 The call was privileged and the caller was not the super-user.
216 function call appeared in
219 There should be some way to integrate this call with the resource
220 limit interface provided by