blob: c7f1c214a2ab64c4f635ea16fa454d5a3ca1e477 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau2dd0d472006-06-29 17:53:05 +02002 include/common/regex.h
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 This file defines everything related to regular expressions.
4
5 Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation, version 2.1
10 exclusively.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20*/
21
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#ifndef _COMMON_REGEX_H
23#define _COMMON_REGEX_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
27#ifdef USE_PCRE
28#include <pcre.h>
29#include <pcreposix.h>
30#else
31#include <regex.h>
32#endif
33
34/* what to do when a header matches a regex */
35#define ACT_ALLOW 0 /* allow the request */
36#define ACT_REPLACE 1 /* replace the matching header */
37#define ACT_REMOVE 2 /* remove the matching header */
38#define ACT_DENY 3 /* deny the request */
39#define ACT_PASS 4 /* pass this header without allowing or denying the request */
40
41struct hdr_exp {
42 struct hdr_exp *next;
43 regex_t *preg; /* expression to look for */
44 int action; /* ACT_ALLOW, ACT_REPLACE, ACT_REMOVE, ACT_DENY */
45 char *replace; /* expression to set instead */
46};
47
48extern regmatch_t pmatch[MAX_MATCH];
49
50int exp_replace(char *dst, char *src, char *str, regmatch_t *matches);
51char *check_replace_string(char *str);
52char *chain_regex(struct hdr_exp **head, regex_t *preg, int action, char *replace);
53
Willy Tarreau2dd0d472006-06-29 17:53:05 +020054#endif /* _COMMON_REGEX_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
56/*
57 * Local variables:
58 * c-indent-level: 8
59 * c-basic-offset: 8
60 * End:
61 */