blob: 3b376a09f31843d83f318188d29ff56556105c06 [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 Tarreau5b2c3362008-07-09 19:39:06 +020036struct cfg_keyword {
37 int section; /* section type for this keyword */
38 const char *kw; /* the keyword itself */
Willy Tarreau39f23b62008-07-09 20:22:56 +020039 int (*parse)( /* 0=OK, <0=Alert, >0=Warning */
40 char **args, /* command line and arguments */
Willy Tarreau5b2c3362008-07-09 19:39:06 +020041 int section_type, /* current section CFG_{GLOBAL|LISTEN} */
42 struct proxy *curpx, /* current proxy (NULL in GLOBAL) */
43 struct proxy *defpx, /* default proxy (NULL in GLOBAL) */
44 char *err, /* error message buffer (do not add '\n') */
45 int errlen); /* error buffer size, '\0' included */
46};
47
48/* A keyword list. It is a NULL-terminated array of keywords. It embeds a
49 * struct list in order to be linked to other lists, allowing it to easily
50 * be declared where it is needed, and linked without duplicating data nor
51 * allocating memory.
52 */
53struct cfg_kw_list {
54 struct list list;
55 struct cfg_keyword kw[VAR_ARRAY];
56};
57
58
Willy Tarreaubaaee002006-06-26 02:48:02 +020059extern int cfg_maxpconn;
60extern int cfg_maxconn;
61
Krzysztof Oledzki336d4752007-12-25 02:40:22 +010062int cfg_parse_global(const char *file, int linenum, char **args, int inv);
63int cfg_parse_listen(const char *file, int linenum, char **args, int inv);
Willy Tarreaub17916e2006-10-15 15:17:57 +020064int readcfgfile(const char *file);
Willy Tarreau5b2c3362008-07-09 19:39:06 +020065void cfg_register_keywords(struct cfg_kw_list *kwl);
66void cfg_unregister_keywords(struct cfg_kw_list *kwl);
Willy Tarreau915e1eb2009-06-22 15:48:36 +020067void init_default_instance();
68int check_config_validity();
Willy Tarreaubaaee002006-06-26 02:48:02 +020069
Willy Tarreau2dd0d472006-06-29 17:53:05 +020070#endif /* _COMMON_CFGPARSE_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +020071
72/*
73 * Local variables:
74 * c-indent-level: 8
75 * c-basic-offset: 8
76 * End:
77 */