Blame man/man3/acl_get_qualifier.3

rpm-build 0a0c83
.\" Access Control Lists manual pages
rpm-build 0a0c83
.\"
rpm-build 0a0c83
.\" (C) 2002 Andreas Gruenbacher, <a.gruenbacher@bestbits.at>
rpm-build 0a0c83
.\"
rpm-build 0a0c83
.\" This is free documentation; you can redistribute it and/or
rpm-build 0a0c83
.\" modify it under the terms of the GNU General Public License as
rpm-build 0a0c83
.\" published by the Free Software Foundation; either version 2 of
rpm-build 0a0c83
.\" the License, or (at your option) any later version.
rpm-build 0a0c83
.\"
rpm-build 0a0c83
.\" The GNU General Public License's references to "object code"
rpm-build 0a0c83
.\" and "executables" are to be interpreted as the output of any
rpm-build 0a0c83
.\" document formatting or typesetting system, including
rpm-build 0a0c83
.\" intermediate and printed output.
rpm-build 0a0c83
.\"
rpm-build 0a0c83
.\" This manual is distributed in the hope that it will be useful,
rpm-build 0a0c83
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 0a0c83
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
rpm-build 0a0c83
.\" GNU General Public License for more details.
rpm-build 0a0c83
.\"
rpm-build 0a0c83
.\" You should have received a copy of the GNU General Public
rpm-build 0a0c83
.\" License along with this manual.  If not, see
rpm-build 0a0c83
.\" <http://www.gnu.org/licenses/>.
rpm-build 0a0c83
.\"
rpm-build 0a0c83
.Dd March 23, 2002
rpm-build 0a0c83
.Dt ACL_GET_QUALIFIER 3
rpm-build 0a0c83
.Os "Linux ACL"
rpm-build 0a0c83
.Sh NAME
rpm-build 0a0c83
.Nm acl_get_qualifier
rpm-build 0a0c83
.Nd retrieve the qualifier from an ACL entry
rpm-build 0a0c83
.Sh LIBRARY
rpm-build 0a0c83
Linux Access Control Lists library (libacl, \-lacl).
rpm-build 0a0c83
.Sh SYNOPSIS
rpm-build 0a0c83
.In sys/types.h
rpm-build 0a0c83
.In sys/acl.h
rpm-build 0a0c83
.Ft void *
rpm-build 0a0c83
.Fn acl_get_qualifier "acl_entry_t entry_d"
rpm-build 0a0c83
.Sh DESCRIPTION
rpm-build 0a0c83
The
rpm-build 0a0c83
.Fn acl_get_qualifier
rpm-build 0a0c83
function retrieves the qualifier from the ACL entry indicated by the argument
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
into working storage and returns a pointer to that storage.
rpm-build 0a0c83
.Pp
rpm-build 0a0c83
If the value of the tag type in the ACL entry referred to by
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
is ACL_USER, then the value returned by
rpm-build 0a0c83
.Fn acl_get_qualifier
rpm-build 0a0c83
is a pointer to type
rpm-build 0a0c83
.Va uid_t .
rpm-build 0a0c83
If the value of the tag type in the ACL entry referred to by
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
is ACL_GROUP, then the value returned by
rpm-build 0a0c83
.Fn acl_get_qualifier
rpm-build 0a0c83
is a pointer to type
rpm-build 0a0c83
.Va gid_t .
rpm-build 0a0c83
If the tag type in the ACL entry referred to by
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
is a tag type for which a qualifier is not supported,
rpm-build 0a0c83
.Fn acl_get_qualifier
rpm-build 0a0c83
returns a value of
rpm-build 0a0c83
.Li (void *)NULL
rpm-build 0a0c83
and the function fails. Subsequent operations using the returned pointer
rpm-build 0a0c83
operate on an independent copy of the qualifier in working storage, and will not change the qualifier of the ACL entry.
rpm-build 0a0c83
.Pp
rpm-build 0a0c83
This function may cause memory to be allocated. The caller should free any
rpm-build 0a0c83
releasable memory, when the new qualifier is no longer required, by calling
rpm-build 0a0c83
.Fn acl_free
rpm-build 0a0c83
with the
rpm-build 0a0c83
.Va void *
rpm-build 0a0c83
value returned by
rpm-build 0a0c83
.Fn acl_get_qualifier
rpm-build 0a0c83
as an argument.
rpm-build 0a0c83
.Pp
rpm-build 0a0c83
The argument
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
and any other ACL entry descriptors that refer to entries within the ACL
rpm-build 0a0c83
containing the entry referred to by
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
continue to refer to those entries. The order of all existing
rpm-build 0a0c83
entries in the ACL containing the entry referred to by
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
remains unchanged.
rpm-build 0a0c83
.Sh RETURN VALUE
rpm-build 0a0c83
On success, the function returns a pointer to the tag qualifier that was retrieved into ACL working storage. On error, a value of
rpm-build 0a0c83
.Li (void *)NULL
rpm-build 0a0c83
is returned and
rpm-build 0a0c83
.Va errno
rpm-build 0a0c83
is set appropriately.
rpm-build 0a0c83
.Sh ERRORS
rpm-build 0a0c83
If any of the following conditions occur, the
rpm-build 0a0c83
.Fn acl_get_qualifier
rpm-build 0a0c83
function returns
rpm-build 0a0c83
.Li (void *)NULL
rpm-build 0a0c83
and sets
rpm-build 0a0c83
.Va errno
rpm-build 0a0c83
to the corresponding value:
rpm-build 0a0c83
.Bl -tag -width Er
rpm-build 0a0c83
.It Bq Er EINVAL
rpm-build 0a0c83
The argument
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
is not a valid descriptor for an ACL entry.
rpm-build 0a0c83
.Pp
rpm-build 0a0c83
The value of the tag type in the ACL entry referenced by the argument
rpm-build 0a0c83
.Va entry_d
rpm-build 0a0c83
is neither ACL_USER nor ACL_GROUP.
rpm-build 0a0c83
.It Bq Er ENOMEM
rpm-build 0a0c83
The value to be returned requires more memory than is allowed by the hardware or system-imposed memory management constraints.
rpm-build 0a0c83
.El
rpm-build 0a0c83
.Sh STANDARDS
rpm-build 0a0c83
IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\(rq, abandoned)
rpm-build 0a0c83
.Sh SEE ALSO
rpm-build 0a0c83
.Xr acl_create_entry 3 ,
rpm-build 0a0c83
.Xr acl_free 3 ,
rpm-build 0a0c83
.Xr acl_get_entry 3 ,
rpm-build 0a0c83
.Xr acl_get_permset 3 ,
rpm-build 0a0c83
.Xr acl_get_tag_type 3 ,
rpm-build 0a0c83
.Xr acl_set_permset 3 ,
rpm-build 0a0c83
.Xr acl_set_qualifier 3 ,
rpm-build 0a0c83
.Xr acl_set_tag_type 3 ,
rpm-build 0a0c83
.Xr acl 5
rpm-build 0a0c83
.Sh AUTHOR
rpm-build 0a0c83
Derived from the FreeBSD manual pages written by
rpm-build 0a0c83
.An "Robert N M Watson" Aq rwatson@FreeBSD.org ,
rpm-build 0a0c83
and adapted for Linux by
rpm-build 0a0c83
.An "Andreas Gruenbacher" Aq a.gruenbacher@bestbits.at .