Home
Search all pages
Subjects
By activity
Professions, Sciences, Humanities, Business, ...
User Interface
Text-based, GUI, Audio, Video, Keyboards, Mouse, Images,...
Text Strings
Conversions, tests, processing, manipulation,...
Math
Integer, Floating point, Matrix, Statistics, Boolean, ...
Processing
Algorithms, Memory, Process control, Debugging, ...
Stored Data
Data storage, Integrity, Encryption, Compression, ...
Communications
Networks, protocols, Interprocess, Remote, Client Server, ...
Hard World Timing, Calendar and Clock, Audio, Video, Printer, Controls...
File System
Management, Filtering, File & Directory access, Viewers, ...
|
|
|
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
NetBSD
RedHat
Others
QUOTACTL(2) OpenBSD Programmer's Manual QUOTACTL(2)
NAME
quotactl - manipulate filesystem quotas
SYNOPSIS
#include <ufs/ufs/quota.h> /* for ufs quotas */
int
quotactl(const char *path, int cmd, int id, char *addr);
DESCRIPTION
The quotactl() call enables, disables and manipulates filesystem quotas.
A quota control command given by cmd operates on the given filename path
for the given user id. The address of an optional command specific data
structure, addr, may be given; its interpretation is discussed below with
each command.
Currently quotas are supported only for the ``ffs'' filesystem. For
``ffs'', a command is composed of a primary command (see below) and a
command type used to interpret the id. Types are supported for interpre-
tation of user identifiers and group identifiers. The ``ffs'' specific
commands are:
Q_QUOTAON Enable disk quotas for the filesystem specified by path. The
command type specifies the type of the quotas being enabled.
The addr argument specifies a file from which to take the quo-
tas. The quota file must exist; it is normally created with
the quotacheck(8) program. The id argument is unused. Only
the super-user may turn quotas on.
Q_QUOTAOFF
Disable disk quotas for the filesystem specified by path. The
command type specifies the type of the quotas being disabled.
The addr and id arguments are unused. Only the super-user may
turn quotas off.
Q_GETQUOTA
Get disk quota limits and current usage for the user or group
(as determined by the command type) with identifier id. addr
is a pointer to a struct dqblk structure.
Q_SETQUOTA
Set disk quota limits for the user or group (as determined by
the command type) with identifier id. addr is a pointer to a
struct dqblk structure. The usage fields of struct dqblk
structure are ignored. This call is restricted to the super-
user.
Q_SETUSE Set disk usage limits for the user or group (as determined by
the command type) with identifier id. addr is a pointer to a
struct dqblk structure. Only the usage fields are used. This
call is restricted to the super-user.
Q_SYNC Update the on-disk copy of quota usages. The command type
specifies which type of quotas are to be updated. The id and
addr parameters are ignored.
RETURN VALUES
A successful call returns 0, otherwise the value -1 is returned and the
global variable errno indicates the reason for the failure.
ERRORS
A quotactl() call will fail if:
[EOPNOTSUPP] The kernel has not been compiled with the QUOTA option.
[EUSERS] The quota table cannot be expanded.
[EINVAL] cmd or the command type is invalid.
[EACCES] In Q_QUOTAON, the quota file is not a plain file.
[EACCES] Search permission is denied for a component of a path pre-
fix.
[ENOTDIR] A component of a path prefix was not a directory.
[ENAMETOOLONG]
A component of a pathname exceeded {NAME_MAX} characters,
or an entire path name exceeded {PATH_MAX} characters.
[ENOENT] A filename does not exist.
[ELOOP] Too many symbolic links were encountered in translating a
pathname.
[EROFS] In Q_QUOTAON, the quota file resides on a read-only
filesystem.
[EIO] An I/O error occurred while reading from or writing to a
file containing quotas.
[EFAULT] An invalid addr was supplied; the associated structure
could not be copied in or out of the kernel.
[EFAULT] path points outside the process's allocated address space.
[EPERM] The call was privileged and the caller was not the super-
user.
SEE ALSO
quota(1), fstab(5), edquota(8), quotacheck(8), quotaon(8), repquo-
ta(8)
BUGS
There should be some way to integrate this call with the resource limit
interface provided by setrlimit(2) and getrlimit(2).
HISTORY
The quotactl() function call appeared in 4.3BSD-Reno.
OpenBSD 2.6 June 4, 1993 2
Source: OpenBSD 2.6 man pages. Copyright: Portions are copyrighted by BERKELEY SOFTWARE DESIGN, INC., The Regents of the University of California, Massachusetts Institute of Technology, Free Software Foundation, FreeBSD Inc., and others. |
(Corrections, notes, and links courtesy of RocketAware.com)
Up to: File System Information - Obtaining information of the filesystem as a whole. Status of disk subsystems, capacity, etc.
Up to: Process Limits: File Access - Process Limits on File access (permissions, ownership, modes, et al)
Up to: Process Limits: Resources - Process Limits on resource usage (disk, CPU, memory, et al)
RocketLink!--> Man page versions:
OpenBSD
FreeBSD
NetBSD
RedHat
Others
Rapid-Links:
Search | About | Comments | Submit Path: RocketAware > man pages >
quotactl.2/
RocketAware.com is a service of Mib Software Copyright 1999, Forrest J. Cavalier III. All Rights Reserved. We welcome submissions and comments
|