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. All advertising materials mentioning features or use of this software
16 .\" must display the following acknowledgement:
17 .\" This product includes software developed by the University of
18 .\" California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\" may be used to endorse or promote products derived from this software
21 .\" without specific prior written permission.
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" @(#)quotactl.2 8.2 (Berkeley) 3/10/95
36 .\" $FreeBSD: src/lib/libc/sys/quotactl.2,v 1.12.2.7 2002/05/20 09:06:37 roam Exp $
37 .\" $DragonFly: src/lib/libc/sys/quotactl.2,v 1.4 2006/05/26 19:39:37 swildner Exp $
44 .Nd manipulate filesystem quotas
51 .Fn quotactl "const char *path" "int cmd" "int id" "void *addr"
55 call enables, disables and
56 manipulates filesystem quotas.
57 A quota control command
60 operates on the given filename
64 (NOTE: One should use the QCMD macro defined in
66 to formulate the value for
68 The address of an optional command specific data structure,
70 may be given; its interpretation
71 is discussed below with each command.
73 Currently quotas are supported only for the
78 a command is composed of a primary command (see below)
79 and a command type used to interpret the
81 Types are supported for interpretation of user identifiers (USRQUOTA)
82 and group identifiers (GRPQUOTA).
85 specific commands are:
86 .Bl -tag -width Q_QUOTAOFFxx
88 Enable disk quotas for the filesystem specified by
90 The command type specifies the type of the quotas being enabled.
93 argument specifies a file from which to take the quotas.
94 The quota file must exist;
95 it is normally created with the
101 Only the super-user may turn quotas on.
103 Disable disk quotas for the filesystem specified by
105 The command type specifies the type of the quotas being disabled.
110 arguments are unused.
111 Only the super-user may turn quotas off.
113 Get disk quota limits and current usage for the user or group
114 (as determined by the command type) with identifier
119 structure (defined in
120 .In ufs/ufs/quota.h ) .
122 Set disk quota limits for the user or group
123 (as determined by the command type) with identifier
128 structure (defined in
129 .In ufs/ufs/quota.h ) .
130 The usage fields of the
132 structure are ignored.
133 This call is restricted to the super-user.
135 Set disk usage limits for the user or group
136 (as determined by the command type) with identifier
141 structure (defined in
142 .In ufs/ufs/quota.h ) .
143 Only the usage fields are used.
144 This call is restricted to the super-user.
146 Update the on-disk copy of quota usages.
147 The command type specifies which type of quotas are to be updated.
152 parameters are ignored.
162 The kernel has not been compiled with the
166 The quota table cannot be expanded.
169 or the command type is invalid.
174 quotas are not currently enabled for this filesystem.
178 the quota file is not a plain file.
180 Search permission is denied for a component of a path prefix.
182 A component of a path prefix was not a directory.
183 .It Bq Er ENAMETOOLONG
184 A component of either pathname exceeded 255 characters,
185 or the entire length of either path name exceeded 1023 characters.
187 A filename does not exist.
189 Too many symbolic links were encountered in translating a pathname.
193 the quota file resides on a read-only filesystem.
197 error occurred while reading from or writing
198 to a file containing quotas.
202 was supplied; the associated structure could not be copied in or out
206 points outside the process's allocated address space.
208 The call was privileged and the caller was not the super-user.
220 function call appeared in
223 There should be some way to integrate this call with the resource
224 limit interface provided by