spelling fixes
[freeradius.git] / doc / configurable_failover
1         Configurable Module Fail Over
2         -----------------------------
3
4 Before configurable module failover, we had this kind of entry in
5 "radiusd.conf":
6
7 #---
8 authorize {
9   preprocess
10   files
11 }
12 #---
13
14   This entry instructed the "authorize" section to first process the
15 request through the "preprocess" module, and if that returned success,
16 to process it through "files" module.  If that sequence returned
17 success, then the "authorize" stage itself would then return success.
18 Processing was strictly linear and if one module failed, the whole
19 section would fail immediately.
20
21   Configurable failover provides more flexibility. It takes advantage
22 of the tree structure of radiusd.conf to support a configuration
23 language that allows you to "group" modules that should work together
24 in ways other than simple lists.  You can control the flow of any
25 stage (e.g. "authorize") to fit your needs, without touching C code,
26 just by altering radiusd.conf.
27
28   This configurable fail-over has a convenient short-hand, too.
29 Administrators commonly want to say things like "try SQL1, if it's
30 down, try SQL2, otherwise drop the request."
31
32   For example:
33
34 #---
35   modules {
36     sql sql1 {
37       # configuration to connect to SQL database one
38     }
39     sql sql2 {
40       # configuration to connect to SQL database two
41     }
42     always handled {
43       rcode = handled
44     }
45   }
46
47   #  Handle accounting packets
48   accounting {
49       detail                    # always log to detail, stopping if it fails
50       redundant {
51         sql1                    # try module sql1
52         sql2                    # if that's down, try module sql2
53         handled                 # otherwise drop the request as
54                                 # it's been "handled" by the "always"
55                                 # module (see doc/rlm_always)
56       }
57   }
58 #---
59
60   The "redundant" section is a configuration directive which tells the
61 server to process the second module if the first one fails.  Any
62 number of modules can be listed in a "redundant" section.  The server
63 will process each in turn, until one of the modules succeeds.  It willthen stop processing the "redundant" list.
64
65   Rewriting results for single modules
66   ------------------------------------
67
68   Normally, when a module fails, the entire section ("authorize",
69 "accounting", etc.) stops being processed.  In some cases, we may want
70 to permit "soft failures".  That is, we may want to tell the server
71 that it is "ok" for a module to fail, and that the failure should not
72 be treated as a fatal error.
73
74   In this case, the module is treated as a "section", rather than just
75 as a single line in "radiusd.conf".  The configuration entries for
76 that section are taken from the "configurable fail-over" code, and not
77 from the configuration information for that module.
78
79   For example, the "detail" module normally returns "fail" if it is
80 unable to write its information to the "detail" file.  As a test, we
81 can configure the server so that it continues processing the request,
82 even if the "detail" module fails.  The following example shows how:
83
84 #--
85   #  Handle accounting packets
86   accounting {
87       detail {
88         fail = 1
89       }
90       redundant {
91         sql1
92         sql2
93         handled
94       }
95   }
96 #--
97
98   The "fail = 1" entry tells the server to remember the "fail" code,
99 with priority "1".  The normal configuration is "fail = return", which
100 means "if the detail module fails, stop processing the accounting
101 section".
102
103   Fail-over configuration entries
104   -------------------------------
105
106   Modules normally return on of the following codes as their result:
107
108         Code            Meaning
109         ----            ------
110         notfound        the user was not found
111         noop            the module did nothing
112         ok              the module succeeded
113         updated         the module updated information in the request
114         fail            the module failed
115         reject          the module rejected the user
116         userlock        the user was locked out
117         invalid         the user's configuration entry was invalid
118         handled         the module has done everything to handle the request
119         
120   In a configurable fail-over section, each of these codes may be
121 listed, with a value.  If the code is not listed, or a configurable
122 fail-over section is not defined, then values that make sense for the
123 requested "group" (group, redundant, load-balance, etc) are used.
124
125   The special code "default" can be used to set all return codes to
126 the specified value.  This value will be used with a lower priority
127 than ones that are explicitly set.
128
129   The values for each code may be one of two things:
130
131         Value           Meaning
132         -----           -------
133         <number>        Priority for this return code.
134         return          stop processing this configurable fail-over list.
135         reject          Stop processing this configurable fail-over list.
136                         and immediately return a reject.
137
138   The <number> used for a value may be any decimal number between 1
139 and 99999.  The number is used when processing a list of modules, to
140 determine which code is returned from the list.  For example, if
141 "module1" returns "fail" with priority "1", and a later "module2"
142 returns "ok" with priority "3", the return code from the list of
143 modules will be "ok", because it has higher priority than "fail".
144
145   This configurability allows the administrator to permit some modules
146 to fail, so long as a later module succeeds.
147
148
149   More Complex Configurations
150   ---------------------------
151
152   The "authorize" section is normally a list of module names.  We can
153 create sub-lists by using the section name "group".  The "redundant"
154 section above is just a short-hand for "group", with a set of default
155 return codes, which are different than the normal "stop processing the
156 list on failure".
157
158   For example, we can configure two detail modules, and allow either
159 to fail, so long as one of them succeeds.
160
161 #--
162   #  Handle accounting packets
163   accounting {
164       group {
165         detail1 {
166           fail = 1              # remember "fail" with priority 1
167           ok = return           # if we succeed, don't do "detail2"
168         }
169         detail2 {
170           fail = 1              # remember "fail" with priority 1
171           ok = return           # if we succeed, return "ok"
172                                 # if "detail1" returned "fail"
173         }
174       }                 # returns "fail" only if BOTH modules returned "fail"
175       redundant {
176         sql1
177         sql2
178         handled
179       }
180   }
181
182 #--
183
184   This configuration says:
185
186         log to "detail1", and stop processing the "group" list if
187         "detail1" returned OK.
188
189         If "detail1" returned "fail", then continue, but remember the
190         "fail" code, with priority 1.
191
192         If "detail2" fails, then remember "fail" with priority 1.
193
194         If "detail2" returned "ok", return "ok" from the "group".
195
196   The return code from the "group" is the return code which was either
197 forced to return (e.g. "ok" for "detail1"), or the highest priority
198 return code found by processing the list.
199
200   This process can be extended to any number of modules listed in a
201 "group" section.
202
203
204   The Gory Details
205   ----------------
206
207 The fundamental object is called a MODCALLABLE, because it is something that
208 can be passed a specific radius request and returns one of the RLM_MODULE_*
209 results. It is a function - if you can accept the fact that pieces of
210 radiusd.conf are functions. There are two kinds of MODCALLABLEs: GROUPs and
211 SINGLEs.
212
213 A SINGLE is a reference to a module instance that was set up in the modules{}
214 section of radiusd.conf, like "preprocess" or "sql1". When a SINGLE is
215 called, the corresponding function in the rlm is invoked, and whichever
216 RLM_MODULE_* it returns becomes the RESULT of the SINGLE.
217
218 A GROUP is a section of radiusd.conf that includes some MODCALLABLEs.
219 Examples of GROUPs above include "authorize{...}", which implements the C
220 function module_authorize, and "redundant{...}", which contains two SINGLEs
221 that refer to a couple of redundant databases. Note that a GROUP can contain
222 other GROUPs - "Auth-Type SQL{...}" is also a GROUP, which implements the C
223 function module_authenticate when Auth-Type is set to SQL.
224
225 Now here's the fun part - what happens when a GROUP is called? It simply runs
226 through all of its children in order, and calls each one, whether it is
227 another GROUP or a SINGLE. It then looks at the RESULT of that child, and
228 takes some ACTION, which is basically either "return that RESULT immediately"
229 or "Keep going". In the first example, any "bad" RESULT from the preprocess
230 module causes an immediate return, and any "good" RESULT causes the
231 authorize{...} GROUP to proceed to the files module.
232
233 We can see the exact rules by writing them out the long way:
234
235 authorize {
236   preprocess {
237     notfound = 1
238     noop     = 2
239     ok       = 3
240     updated  = 4
241     fail     = return
242     reject   = return
243     userlock = return
244     invalid  = return
245     handled  = return
246   }
247   files {
248     notfound = 1
249     noop     = 2
250     ok       = 3
251     updated  = 4
252     fail     = return
253     reject   = return
254     userlock = return
255     invalid  = return
256     handled  = return
257   }
258 }
259
260 This is the same as the first example, with the behavior explicitly
261 spelled out. Each SINGLE becomes its own section, containing a list of
262 RESULTs that it may return and what ACTION should follow from them. So
263 preprocess is called, and if it returns for example RLM_MODULE_REJECT,
264 then the reject=return rule is applied, and the authorize{...} GROUP
265 itself immediately returns RLM_MODULE_REJECT.
266
267 If preprocess returns RLM_MODULE_NOOP, the corresponding ACTION is "2". An
268 integer ACTION serves two purposes - first, it tells the parent GROUP to go
269 on to the next module. Second, it is a hint as to how desirable this RESULT
270 is as a candidate for the GROUP's own RESULT. So files is called... suppose
271 it returns RLM_MODULE_NOTFOUND. The ACTION for notfound inside the files{...}
272 block is "1". We have now reached the end of the authorize{...} GROUP and we
273 look at the RESULTs we accumulated along the way - there is a noop with
274 preference level 2, and a notfound with preference level 1, so the
275 authorize{...} GROUP as a whole returns RLM_MODULE_NOOP, which makes sense
276 because to say the user was not found at all would be a lie, since preprocess
277 apparently found him, or else it would have returned RLM_MODULE_NOTFOUND too.
278
279 We could use the "default" code to simplify the above example a
280 little.  The following two configurations are identical:
281
282 ...
283   files {
284     notfound = 1
285     noop     = 2
286     ok       = 3
287     updated  = 4
288     default  = return
289   }
290 ...
291
292 When putting the "default" first, later definitions over-ride it's
293 return code:
294
295 ...
296   files {
297     default  = return
298     notfound = 1
299     noop     = 2
300     ok       = 3
301     updated  = 4
302   }
303 ...
304
305
306 [Take a deep breath - the worst is over]
307
308 That RESULT preference/desirability stuff is pretty complex, but my hope is
309 that it will be complex enough to handle the needs of everyone's real-world
310 imperfect systems, while staying out of sight most of the time since the
311 defaults will be right for the most common configurations.
312
313 So where does redundant{...} fit in with all that? Well, redundant{...} is
314 simply a group that changes the default ACTIONs to something like
315
316   fail = 1
317   everythingelse = return
318
319 so that when one module fails, we keep trying until we find one that doesn't
320 fail, then return whatever it returned. And at the end, if they all failed,
321 the redundant GROUP as a whole returns RLM_MODULE_FAIL, just as you'd want it
322 to (I hope).
323
324 There are two other kinds of grouping: group{...} which does not have any
325 specialized default ACTIONs, and append{...}, which should be used when you
326 have separate but similarly structured databases that are guaranteed not to
327 overlap.
328
329 That's all that really needs to be said. But now a few random notes:
330
331 1. GROUPs may have RESULT=ACTION specifiers too! It would look like this:
332
333   authorize {
334     preprocess
335     redundant {
336       sql1
337       sql2
338       notfound = return
339     }
340     files
341   }
342
343 which would prevent rlm_files from being called if neither of the SQL
344 instances could find the user.
345
346 2. redundant{...} and append{...} are just shortcuts. You could write
347     group {
348       sql1 {
349         fail     = 1
350         notfound = 2
351         noop     = return
352         ok       = return
353         updated  = return
354         reject   = return
355         userlock = return
356         invalid  = return
357         handled  = return
358       }
359       sql2 {
360         fail     = 1
361         notfound = 2
362         noop     = return
363         ok       = return
364         updated  = return
365         reject   = return
366         userlock = return
367         invalid  = return
368         handled  = return
369       }
370     }
371   instead of
372     redundant {
373       sql1
374       sql2
375     }
376   but the latter is just a whole lot easier to read.
377
378 3. "authenticate{...}" itself is not a GROUP, even though it contains a list
379 of Auth-Type GROUPs, because its semantics are totally different - it uses
380 Auth-Type to decide which of its members to call, and their order is
381 irrelevant.
382
383 4. The default rules are context-sensitive - for authorize, the defaults are
384 what you saw above - notfound, noop, ok, and updated are considered
385 success, and anything else has an ACTION of "return". For authenticate, the
386 default is to return on success *or* reject, and only try the second and
387 following items if the first one fails. You can read all the default ACTIONs
388 in modcall.c (int defaultactions[][][]), or just trust me. They do the right
389 thing.
390
391 5. There are some rules that can't be implemented in this language - things
392 like "notfound = 1-reject", "noop = 2-ok", "ok = 3-ok", etc. But I don't feel
393 justified adding that complexity in the first draft.
394 There are already enough things here that may never see real-world usage.
395 Like append{...}
396
397 -- Pac. 9/18/2000