]> git.sur5r.net Git - openldap/blob - doc/man/man5/slapo-retcode.5
Further details as to why slapcat(8) output cannot be used
[openldap] / doc / man / man5 / slapo-retcode.5
1 .TH SLAPO-RETCODE5 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2006 The OpenLDAP Foundation, All Rights Reserved.
3 .\" Copying restrictions apply.  See the COPYRIGHT file.
4 .\" Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
5 .\" $OpenLDAP$
6 .SH NAME
7 slapo-retcode \- return code overlay
8 .SH SYNOPSIS
9 ETCDIR/slapd.conf
10 .SH DESCRIPTION
11 The
12 .B retcode
13 overlay to
14 .BR slapd (8)
15 is useful to test the behavior of clients when server-generated erroneous
16 and/or unusual responses occur, e.g. error codes, referrals, 
17 excessive response times and so on.
18
19 The error responses are generated according to different strategies.
20 .LP
21 In the first case, all operations targeted at a specific configurable
22 subtree cause the object related to the request DN to be looked up
23 and checked for return code data: a response code, plus an optional
24 textual message, an optional configurable delay, an optional matched DN
25 field, and, when the response code is "referral", a (list of) referral(s).
26 .LP
27 Well-known response codes from standard track documents are provided
28 in \fBretcode.conf\fP, which can be included after instantiating
29 the overlay.
30 .LP
31 In the second case, objects of classes inherited from 
32 the \fBerrAbsObject\fP, like \fBerrObject\fP or \fBerrAuxObject\fP,
33 when returned as intermediate responses of a search request, are changed
34 into the response dictated by their content.
35 .LP
36 A third mode causes objects to be looked up from the underlying database 
37 to discover if their class inherits from \fBerrABsObject\fP;
38 in that case, their content is used to compute the corresponding response.
39 .LP
40 The behavior is disabled by using the \fBmanageDSAit\fP control (RFC 3296);
41 in that case, the resulting object, either present in the directory 
42 or dynamically generated by the overlay, or contained in the request,
43 is handled as usual.
44 .LP 
45 The config directives that are specific to the
46 .B retcode
47 overlay must be prefixed by
48 .BR retcode\- ,
49 to avoid conflicts with directives specific to the underlying database
50 or to other stacked overlays.  The following specific directives 
51 can be used to configure the retcode overlay: 
52 .TP
53 .B retcode\-parent <DN>
54 This directive defines the parent DN where dynamically generated
55 entries reside.
56 If not defined, the suffix of the database is used.
57 .HP
58 .hy 0
59 .B retcode\-item <RDN> <errCode> [op=<oplist>] [text=<message>]
60 .B [ref=<referral>] [sleeptime=<sec>] [matched=<DN>]
61 .RS
62 A dynamically generated entry, located below \fBretcode\-parent\fP.
63 The \fB<errCode>\fP is the number of the response code;
64 it can be in any format supported by strtol.
65 The optional \fB<oplist>\fP is a list of operations that cause
66 response code generation; if absent, all operations are affected.
67 The \fBmatched\fP field is the matched DN that is returned
68 along with the error.
69 The \fBref\fP field is only allowed for the \fBreferral\fP 
70 response code.
71 .RE
72 .TP
73 .B retcode\-indir
74 Enables exploitation of in-directory stored errAbsObject.
75 May result in a lot of unnecessary overhead.
76 .TP
77 .B retcode\-sleep [-]<n>
78 Defines a sleep time in seconds that is spent before actually handling
79 any operation.
80 If negative, a random time between 0 and the absolute value of the argument
81 is used.
82
83 .SH SCHEMA
84 The
85 .B retcode
86 overlay utilizes the "return code" schema described herein. 
87 This schema is specifically designed for use with this
88 overlay and is not intended to be used otherwise.
89 It is also noted that the schema describe here is
90 .I a work in
91 .IR progress ,
92 and hence subject to change without notice.
93 The schema is loaded automatically by the overlay.
94
95 The schema includes a number of object classes and associated
96 attribute types as described below.
97
98 .LP
99 The error code:
100 .RS 4
101 (  1.3.6.1.4.1.4203.666.11.4.1.1
102     NAME ( 'errCode' )
103     DESC 'LDAP error code'
104     EQUALITY integerMatch
105     ORDERING integerOrderingMatch
106     SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
107     SINGLE-VALUE )
108 .RE
109 .LP
110 The operations that trigger the response code:
111 .RS 4
112 ( 1.3.6.1.4.1.4203.666.11.4.1.2
113     NAME ( 'errOp' )
114     DESC 'Operations the errObject applies to'
115     EQUALITY caseIgnoreMatch
116     SUBSTR caseIgnoreSubstringsMatch
117     SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
118 .RE
119 .LP
120 The text message:
121 .RS 4
122 ( 1.3.6.1.4.1.4203.666.11.4.1.3
123     NAME ( 'errText' )
124     DESC 'LDAP error textual description'
125     EQUALITY caseIgnoreMatch
126     SUBSTR caseIgnoreSubstringsMatch
127     SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
128     SINGLE-VALUE )
129 .RE
130 .LP
131 The sleep time before the response is actually returned to the client:
132 .RS 4
133 ( 1.3.6.1.4.1.4203.666.11.4.1.4
134     NAME ( 'errSleepTime' )
135     DESC 'Time to wait before returning the error'
136     EQUALITY integerMatch
137     SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
138     SINGLE-VALUE )
139 .RE
140 .LP
141 The matched DN returned to the client:
142 .RS 4
143 ( 1.3.6.1.4.1.4203.666.11.4.1.5
144     NAME ( 'errMatchedDN' )
145     DESC 'Value to be returned as matched DN'
146     EQUALITY distinguishedNameMatch
147     SYNTAX 1.3.6.1.4.1.1466.115.121.1.12
148     SINGLE-VALUE )
149 .RE
150 .LP
151 The abstract class that triggers the overlay:
152 .RS 4
153 ( 1.3.6.1.4.1.4203.666.11.4.3.0
154     NAME ( 'errAbsObject' )
155     SUP top ABSTRACT
156     MUST ( errCode )
157     MAY ( cn $ description $ errOp $ errText $ errSleepTime
158         $ errMatchedDN ) )
159 .RE
160 .LP
161 The standalone structural objectclass for specifically created data:
162 .RS 4
163 ( 1.3.6.1.4.1.4203.666.11.4.3.1
164     NAME ( 'errObject' )
165     SUP errAbsObject STRUCTURAL )
166 .RE
167 .LP
168 The auxiliary objectclass to alter the behavior of existing objects:
169 .RS 4
170 ( 1.3.6.1.4.1.4203.666.11.4.3.2
171     NAME ( 'errAuxObject' )
172     SUP errAbsObject AUXILIARY )
173 .RE
174
175 .SH EXAMPLE
176 .LP
177 .RS
178 .nf
179 overlay         retcode
180 retcode-parent  "ou=RetCodes,dc=example,dc=com"
181 include         ./retcode.conf
182
183 # Wait 10 seconds, then return success (0x00)
184 retcode-item    "cn=Success after 10 seconds" 0x00 sleeptime=10
185 # Wait 10 seconds, then return timelimitExceeded (0x03)
186 retcode-item    "cn=Timelimit after 10 seconds" 0x03 sleeptime=10
187 .fi
188 .RE
189 .LP
190 .LP
191
192 .SH FILES
193 .TP
194 ETCDIR/slapd.conf
195 default slapd configuration file
196 .SH SEE ALSO
197 .BR slapd.conf (5),
198 .BR slapd (8),
199 .SH ACKNOWLEDGEMENTS
200 .P
201 This module was written in 2005 by Pierangelo Masarati for SysNet s.n.c.