1 /* $OpenLDAP: pkg/ldap/libraries/librewrite/rewrite-int.h,v 1.20.2.3 2008/02/11 23:26:42 kurt Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 2000-2008 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
16 * This work was initially developed by Pierangelo Masarati for
17 * inclusion in OpenLDAP Software.
24 * These are required by every file of the library, so they're included here
26 #include <ac/stdlib.h>
27 #include <ac/string.h>
28 #include <ac/syslog.h>
30 #include <ac/socket.h>
31 #include <ac/unistd.h>
36 #include "../libldap/ldap-int.h"
42 /* Uncomment to use ldap pvt threads */
43 #define USE_REWRITE_LDAP_PVT_THREADS
44 #include <ldap_pvt_thread.h>
47 * For details, see RATIONALE.
50 #define REWRITE_MAX_MATCH 11 /* 0: overall string; 1-9: submatches */
51 #define REWRITE_MAX_PASSES 100
54 * Submatch escape char
56 /* the '\' conflicts with slapd.conf parsing */
57 /* #define REWRITE_SUBMATCH_ESCAPE '\\' */
58 #define REWRITE_SUBMATCH_ESCAPE_ORIG '%'
59 #define REWRITE_SUBMATCH_ESCAPE '$'
60 #define IS_REWRITE_SUBMATCH_ESCAPE(c) \
61 ((c) == REWRITE_SUBMATCH_ESCAPE || (c) == REWRITE_SUBMATCH_ESCAPE_ORIG)
67 #define REWRITE_FLAG_HONORCASE 'C'
68 #define REWRITE_FLAG_BASICREGEX 'R'
73 #define REWRITE_FLAG_EXECONCE ':'
74 #define REWRITE_FLAG_STOP '@'
75 #define REWRITE_FLAG_UNWILLING '#'
76 #define REWRITE_FLAG_GOTO 'G' /* requires an arg */
77 #define REWRITE_FLAG_USER 'U' /* requires an arg */
78 #define REWRITE_FLAG_MAX_PASSES 'M' /* requires an arg */
79 #define REWRITE_FLAG_IGNORE_ERR 'I'
84 #define REWRITE_OPERATOR_SUBCONTEXT '>'
85 #define REWRITE_OPERATOR_COMMAND '|'
86 #define REWRITE_OPERATOR_VARIABLE_SET '&'
87 #define REWRITE_OPERATOR_VARIABLE_GET '*'
88 #define REWRITE_OPERATOR_PARAM_GET '$'
98 struct rewrite_action
{
99 struct rewrite_action
*la_next
;
101 #define REWRITE_ACTION_STOP 0x0001
102 #define REWRITE_ACTION_UNWILLING 0x0002
103 #define REWRITE_ACTION_GOTO 0x0003
104 #define REWRITE_ACTION_IGNORE_ERR 0x0004
105 #define REWRITE_ACTION_USER 0x0005
118 #define REWRITE_MAP_XFILEMAP 0x0001 /* Rough implementation! */
119 #define REWRITE_MAP_XPWDMAP 0x0002 /* uid -> gecos */
120 #define REWRITE_MAP_XLDAPMAP 0x0003 /* Not implemented yet! */
125 #define REWRITE_MAP_SUBCONTEXT 0x0101
127 #define REWRITE_MAP_SET_OP_VAR 0x0102
128 #define REWRITE_MAP_SETW_OP_VAR 0x0103
129 #define REWRITE_MAP_GET_OP_VAR 0x0104
130 #define REWRITE_MAP_SET_SESN_VAR 0x0105
131 #define REWRITE_MAP_SETW_SESN_VAR 0x0106
132 #define REWRITE_MAP_GET_SESN_VAR 0x0107
133 #define REWRITE_MAP_GET_PARAM 0x0108
134 #define REWRITE_MAP_BUILTIN 0x0109
141 * Old maps store private data in _lm_args;
142 * new maps store the substitution pattern in _lm_subst
146 struct rewrite_subst
*_lm_subst
;
148 #define lm_args lm_union._lm_args
149 #define lm_subst lm_union._lm_subst
151 #ifdef USE_REWRITE_LDAP_PVT_THREADS
152 ldap_pvt_thread_mutex_t lm_mutex
;
153 #endif /* USE_REWRITE_LDAP_PVT_THREADS */
159 struct rewrite_builtin_map
{
160 #define REWRITE_BUILTIN_MAP 0x0200
164 const rewrite_mapper
*lb_mapper
;
166 #ifdef USE_REWRITE_LDAP_PVT_THREADS
167 ldap_pvt_thread_mutex_t lb_mutex
;
168 #endif /* USE_REWRITE_LDAP_PVT_THREADS */
172 * Submatch substitution
174 struct rewrite_submatch
{
175 #define REWRITE_SUBMATCH_ASIS 0x0000
176 #define REWRITE_SUBMATCH_XMAP 0x0001
177 #define REWRITE_SUBMATCH_MAP_W_ARG 0x0002
179 struct rewrite_map
*ls_map
;
182 * The first one represents the index of the submatch in case
183 * the map has single submatch as argument;
184 * the latter represents the map argument scheme in case
185 * the map has substitution string argument form
190 * Pattern substitution
192 struct rewrite_subst
{
194 struct berval
*lt_subs
;
197 struct rewrite_submatch
*lt_submatch
;
203 struct rewrite_rule
{
204 struct rewrite_rule
*lr_next
;
205 struct rewrite_rule
*lr_prev
;
208 char *lr_subststring
;
213 * I was thinking about some kind of per-rule mutex, but there's
214 * probably no need, because rules after compilation are only read;
215 * however, I need to check whether regexec is reentrant ...
218 struct rewrite_subst
*lr_subst
;
220 #define REWRITE_REGEX_ICASE REG_ICASE
221 #define REWRITE_REGEX_EXTENDED REG_EXTENDED
224 #define REWRITE_RECURSE 0x0001
225 #define REWRITE_EXEC_ONCE 0x0002
229 struct rewrite_action
*lr_action
;
233 * Rewrite Context (set of rules)
235 struct rewrite_context
{
237 struct rewrite_context
*lc_alias
;
238 struct rewrite_rule
*lc_rule
;
244 struct rewrite_session
{
247 #ifdef USE_REWRITE_LDAP_PVT_THREADS
248 ldap_pvt_thread_rdwr_t ls_vars_mutex
;
249 ldap_pvt_thread_mutex_t ls_mutex
;
250 #endif /* USE_REWRITE_LDAP_PVT_THREADS */
260 struct berval lv_value
;
269 #if 0 /* FIXME: not used anywhere! (debug? then, why strdup?) */
274 const void *lo_cookie
;
285 struct rewrite_info
{
289 * No global mutex because maps are read only at
296 #ifdef USE_REWRITE_LDAP_PVT_THREADS
297 ldap_pvt_thread_rdwr_t li_params_mutex
;
298 ldap_pvt_thread_rdwr_t li_cookies_mutex
;
299 #endif /* USE_REWRITE_LDAP_PVT_THREADS */
303 * use `rewriteEngine {on|off}' directive to alter
308 * Defaults to REWRITE_MAXPASSES;
309 * use `rewriteMaxPasses numPasses' directive to alter
311 #define REWRITE_MAXPASSES 100
313 int li_max_passes_per_rule
;
316 * Behavior in case a NULL or non-existent context is required
325 LDAP_REWRITE_V (struct rewrite_context
*) rewrite_int_curr_context
;
332 * Parses a map (also in legacy 'x' version)
334 LDAP_REWRITE_F (struct rewrite_map
*)
336 struct rewrite_info
*info
,
341 LDAP_REWRITE_F (struct rewrite_map
*)
343 struct rewrite_info
*info
,
349 * Resolves key in val by means of map (also in legacy 'x' version)
353 struct rewrite_info
*info
,
354 struct rewrite_op
*op
,
355 struct rewrite_map
*map
,
362 struct rewrite_info
*info
,
363 struct rewrite_op
*op
,
364 struct rewrite_map
*map
,
371 struct rewrite_map
**map
375 rewrite_xmap_destroy(
376 struct rewrite_map
**map
379 LDAP_REWRITE_F (void)
380 rewrite_builtin_map_free(
384 * Submatch substitution
388 * Compiles a substitution pattern
390 LDAP_REWRITE_F (struct rewrite_subst
*)
391 rewrite_subst_compile(
392 struct rewrite_info
*info
,
397 * Substitutes a portion of rewritten string according to substitution
398 * pattern using submatches
402 struct rewrite_info
*info
,
403 struct rewrite_op
*op
,
404 struct rewrite_subst
*subst
,
406 const regmatch_t
*match
,
411 rewrite_subst_destroy(
412 struct rewrite_subst
**subst
421 * Compiles the rule and appends it at the running context
424 rewrite_rule_compile(
425 struct rewrite_info
*info
,
426 struct rewrite_context
*context
,
429 const char *flagstring
433 * Rewrites string according to rule; may return:
434 * REWRITE_REGEXEC_OK: fine; if *result != NULL rule matched
435 * and rewrite succeeded.
436 * REWRITE_REGEXEC_STOP: fine, rule matched; stop processing
438 * REWRITE_REGEXEC_UNWILL: rule matched; force 'unwilling to perform'
439 * REWRITE_REGEXEC_ERR: an error occurred
443 struct rewrite_info
*info
,
444 struct rewrite_op
*op
,
445 struct rewrite_rule
*rule
,
451 rewrite_rule_destroy(
452 struct rewrite_rule
**rule
460 * Fetches a struct rewrite_session
462 LDAP_REWRITE_F (struct rewrite_session
*)
463 rewrite_session_find(
464 struct rewrite_info
*info
,
469 * Defines and inits a variable with session scope
472 rewrite_session_var_set_f(
473 struct rewrite_info
*info
,
481 * Gets a var with session scope
484 rewrite_session_var_get(
485 struct rewrite_info
*info
,
495 rewrite_session_delete(
496 struct rewrite_info
*info
,
501 * Destroys the cookie tree
504 rewrite_session_destroy(
505 struct rewrite_info
*info
516 LDAP_REWRITE_F (struct rewrite_var
*)
523 * Replaces the value of a variable
527 struct rewrite_var
*var
,
533 * Inserts a newly created var
535 LDAP_REWRITE_F (struct rewrite_var
*)
536 rewrite_var_insert_f(
543 #define rewrite_var_insert(tree, name, value) \
544 rewrite_var_insert_f((tree), (name), (value), \
545 REWRITE_VAR_UPDATE|REWRITE_VAR_COPY_NAME|REWRITE_VAR_COPY_VALUE)
550 LDAP_REWRITE_F (struct rewrite_var
*)
558 #define rewrite_var_set(tree, name, value, insert) \
559 rewrite_var_set_f((tree), (name), (value), \
560 REWRITE_VAR_UPDATE|REWRITE_VAR_COPY_NAME|REWRITE_VAR_COPY_VALUE|((insert)? REWRITE_VAR_INSERT : 0))
576 * Finds the context named rewriteContext in the context tree
578 LDAP_REWRITE_F (struct rewrite_context
*)
579 rewrite_context_find(
580 struct rewrite_info
*info
,
581 const char *rewriteContext
585 * Creates a new context called rewriteContext and stores in into the tree
587 LDAP_REWRITE_F (struct rewrite_context
*)
588 rewrite_context_create(
589 struct rewrite_info
*info
,
590 const char *rewriteContext
594 * Rewrites string according to context; may return:
595 * OK: fine; if *result != NULL rule matched and rewrite succeeded.
596 * STOP: fine, rule matched; stop processing following rules
597 * UNWILL: rule matched; force 'unwilling to perform'
600 rewrite_context_apply(
601 struct rewrite_info
*info
,
602 struct rewrite_op
*op
,
603 struct rewrite_context
*context
,
609 rewrite_context_destroy(
610 struct rewrite_context
**context
613 LDAP_REWRITE_F (void)
614 rewrite_context_free(
618 #endif /* REWRITE_INT_H */