blob: 5486b7e991bab8a04aa8c2c311d5508f88f35b1a [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau2dd0d472006-06-29 17:53:05 +02002 include/common/cfgparse.h
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 Configuration parsing functions.
4
Willy Tarreau5b2c3362008-07-09 19:39:06 +02005 Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +02006
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_CFGPARSE_H
23#define _COMMON_CFGPARSE_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau5b2c3362008-07-09 19:39:06 +020025#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020026#include <common/config.h>
Willy Tarreau5b2c3362008-07-09 19:39:06 +020027#include <common/mini-clist.h>
28
29#include <types/proxy.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020030
Willy Tarreaubaaee002006-06-26 02:48:02 +020031/* configuration sections */
32#define CFG_NONE 0
33#define CFG_GLOBAL 1
34#define CFG_LISTEN 2
35
Willy Tarreau5af24ef2009-03-15 15:23:16 +010036/* list of overlapping ACL rules that we can detect */
37enum {
38 CFG_ACL_TCP = 1,
39 CFG_ACL_BLOCK = 2,
40 CFG_ACL_REDIR = 4,
41 CFG_ACL_BACKEND = 8,
42};
43
Willy Tarreau5b2c3362008-07-09 19:39:06 +020044struct cfg_keyword {
45 int section; /* section type for this keyword */
46 const char *kw; /* the keyword itself */
Willy Tarreau39f23b62008-07-09 20:22:56 +020047 int (*parse)( /* 0=OK, <0=Alert, >0=Warning */
48 char **args, /* command line and arguments */
Willy Tarreau5b2c3362008-07-09 19:39:06 +020049 int section_type, /* current section CFG_{GLOBAL|LISTEN} */
50 struct proxy *curpx, /* current proxy (NULL in GLOBAL) */
51 struct proxy *defpx, /* default proxy (NULL in GLOBAL) */
52 char *err, /* error message buffer (do not add '\n') */
53 int errlen); /* error buffer size, '\0' included */
54};
55
56/* A keyword list. It is a NULL-terminated array of keywords. It embeds a
57 * struct list in order to be linked to other lists, allowing it to easily
58 * be declared where it is needed, and linked without duplicating data nor
59 * allocating memory.
60 */
61struct cfg_kw_list {
62 struct list list;
63 struct cfg_keyword kw[VAR_ARRAY];
64};
65
66
Willy Tarreaubaaee002006-06-26 02:48:02 +020067extern int cfg_maxpconn;
68extern int cfg_maxconn;
Willy Tarreau5af24ef2009-03-15 15:23:16 +010069extern unsigned int acl_seen; /* CFG_ACL_* for current proxy being parsed */
Willy Tarreaubaaee002006-06-26 02:48:02 +020070
Krzysztof Oledzki336d4752007-12-25 02:40:22 +010071int cfg_parse_global(const char *file, int linenum, char **args, int inv);
72int cfg_parse_listen(const char *file, int linenum, char **args, int inv);
Willy Tarreaub17916e2006-10-15 15:17:57 +020073int readcfgfile(const char *file);
Willy Tarreau5b2c3362008-07-09 19:39:06 +020074void cfg_register_keywords(struct cfg_kw_list *kwl);
75void cfg_unregister_keywords(struct cfg_kw_list *kwl);
Willy Tarreaubaaee002006-06-26 02:48:02 +020076
Willy Tarreau2dd0d472006-06-29 17:53:05 +020077#endif /* _COMMON_CFGPARSE_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +020078
79/*
80 * Local variables:
81 * c-indent-level: 8
82 * c-basic-offset: 8
83 * End:
84 */