openldap/doc/man/man8/slapacl.8

185 lines
3.9 KiB
Groff
Raw Normal View History

2004-04-20 17:18:10 +08:00
.TH SLAPACL 8C "RELEASEDATE" "OpenLDAP LDVERSION"
2006-01-04 07:11:52 +08:00
.\" Copyright 2004-2006 The OpenLDAP Foundation All Rights Reserved.
2004-04-20 17:18:10 +08:00
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
.SH NAME
slapacl \- Check access to a list of attributes.
.SH SYNOPSIS
.B SBINDIR/slapacl
2006-05-25 01:57:13 +08:00
.B \-b DN
2004-04-20 17:18:10 +08:00
.B [\-d level]
2006-05-25 01:57:13 +08:00
.B [\-D authcDN | \-U authcID]
2004-04-20 17:18:10 +08:00
.B [\-f slapd.conf]
.B [\-F confdir]
2006-05-25 01:57:13 +08:00
.B [\-o name[=value]
2005-04-02 03:07:09 +08:00
.B [\-u]
2006-05-25 01:57:13 +08:00
.B [\-v]
.B [\-X authzID | \-o authzDN=DN]
2004-11-17 21:43:04 +08:00
.B [attr[/access][:value]] [...]
2004-04-20 17:18:10 +08:00
.LP
.SH DESCRIPTION
.LP
.B Slapacl
is used to check the behavior of the slapd in verifying access to data
according to ACLs, as specified in
.BR slapd.access (5).
It opens the
.BR slapd.conf (5)
configuration file, reads in the
.B access
and
.B defaultaccess
directives, and then parses the
.B attr
2004-11-17 21:43:04 +08:00
list given on the command-line; if none is given, access to the
.B entry
pseudo-attribute is tested.
2004-04-20 17:18:10 +08:00
.LP
.SH OPTIONS
.TP
2006-05-25 01:57:13 +08:00
.BI \-b " DN"
specify the
.B DN
which access is requested to; the corresponding entry is fetched
from the database, and thus it must exist.
The DN is also used to determine what rules apply; thus, it must be
in the naming context of a configured database. See also
.BR \-u .
2004-04-20 17:18:10 +08:00
.TP
.BI \-d " level"
enable debugging messages as defined by the specified
2006-09-09 02:26:57 +08:00
.IR level ;
see
.BR slapd (8)
for details.
2004-04-20 17:18:10 +08:00
.TP
2006-05-25 01:57:13 +08:00
.BI \-D " authcDN"
specify a DN to be used as identity through the test session
when selecting appropriate
.B <by>
clauses in access lists.
.TP
2004-04-20 17:18:10 +08:00
.BI \-f " slapd.conf"
specify an alternative
.BR slapd.conf (5)
file.
.TP
.BI \-F " confdir"
specify a config directory.
If both
.B -f
and
.B -F
are specified, the config file will be read and converted to
config directory format and written to the specified directory.
If neither option is specified, an attempt to read the
2005-11-11 19:17:46 +08:00
default config directory will be made before trying to use the default
config file. If a valid config directory exists then the
default config file is ignored.
.TP
.BI \-o " option[=value]"
Specify an
.BR option
with a(n optional)
.BR value .
2006-05-25 01:57:13 +08:00
Possible generic options/values are:
.LP
.nf
2006-05-25 01:57:13 +08:00
syslog=<subsystems> (see `\-s' in slapd(8))
syslog-level=<level> (see `\-S' in slapd(8))
syslog-user=<user> (see `\-l' in slapd(8))
.fi
.RS
Possible options/values specific to
.B slapacl
are:
.RE
.nf
authzDN
domain
peername
2006-05-25 01:57:13 +08:00
sasl_ssf
sockname
2006-05-25 01:57:13 +08:00
sockurl
ssf
tls_ssf
2006-05-25 01:57:13 +08:00
transport_ssf
.fi
2006-05-25 01:57:13 +08:00
.RS
See the related fields in
.BR slapd.access (5)
for details.
.RE
2005-04-02 03:07:09 +08:00
.TP
.BI \-u
do not fetch the entry from the database.
In this case, if the entry does not exist, a fake entry with the DN
given with the
.B \-b
option is used, with no attributes.
As a consequence, those rules that depend on the contents
of the target object will not behave as with the real object.
The DN given with the
.B \-b
option is still used to select what rules apply; thus, it must be
in the naming context of a configured database.
See also
.BR \-b .
2006-05-25 01:57:13 +08:00
.TP
.BI \-U " authcID"
specify an ID to be mapped to a
.B DN
as by means of
.B authz-regexp
or
.B authz-rewrite
rules (see
.BR slapd.conf (5)
for details); mutually exclusive with
.BR \-D .
.TP
.B \-v
enable verbose mode.
.TP
.BI \-X " authzID"
specify an authorization ID to be mapped to a
.B DN
as by means of
.B authz-regexp
or
.B authz-rewrite
rules (see
.BR slapd.conf (5)
for details); mutually exclusive with \fB\-o\fP \fIauthzDN=DN\fP.
2004-04-20 17:18:10 +08:00
.SH EXAMPLES
The command
.LP
.nf
.ft tt
SBINDIR/slapacl -f /ETCDIR/slapd.conf -v \\
-U bjorn -b "o=University of Michigan,c=US" \\
"o/read:University of Michigan"
.ft
.fi
tests whether the user
.I bjorn
can access the attribute
.I o
of the entry
.I o=University of Michigan,c=US
at
.I read
level.
.SH "SEE ALSO"
.BR ldap (3),
.BR slapd (8)
.BR slaptest (8)
.BR slapauth (8)
.LP
"OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
.SH ACKNOWLEDGEMENTS
2006-06-14 12:24:43 +08:00
.so ../Project