Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 2 | include/common/cfgparse.h |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3 | Configuration parsing functions. |
| 4 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 5 | Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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 Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #ifndef _COMMON_CFGPARSE_H |
| 23 | #define _COMMON_CFGPARSE_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 25 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 26 | #include <common/config.h> |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 27 | #include <common/mini-clist.h> |
| 28 | |
| 29 | #include <types/proxy.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 30 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | /* configuration sections */ |
| 32 | #define CFG_NONE 0 |
| 33 | #define CFG_GLOBAL 1 |
| 34 | #define CFG_LISTEN 2 |
| 35 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 36 | struct cfg_keyword { |
| 37 | int section; /* section type for this keyword */ |
| 38 | const char *kw; /* the keyword itself */ |
Willy Tarreau | 39f23b6 | 2008-07-09 20:22:56 +0200 | [diff] [blame] | 39 | int (*parse)( /* 0=OK, <0=Alert, >0=Warning */ |
| 40 | char **args, /* command line and arguments */ |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 41 | 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 | */ |
| 53 | struct cfg_kw_list { |
| 54 | struct list list; |
| 55 | struct cfg_keyword kw[VAR_ARRAY]; |
| 56 | }; |
| 57 | |
| 58 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 59 | extern int cfg_maxpconn; |
| 60 | extern int cfg_maxconn; |
| 61 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 62 | int cfg_parse_global(const char *file, int linenum, char **args, int inv); |
| 63 | int cfg_parse_listen(const char *file, int linenum, char **args, int inv); |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 64 | int readcfgfile(const char *file); |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 65 | void cfg_register_keywords(struct cfg_kw_list *kwl); |
| 66 | void cfg_unregister_keywords(struct cfg_kw_list *kwl); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 67 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 68 | #endif /* _COMMON_CFGPARSE_H */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 69 | |
| 70 | /* |
| 71 | * Local variables: |
| 72 | * c-indent-level: 8 |
| 73 | * c-basic-offset: 8 |
| 74 | * End: |
| 75 | */ |