Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 2 | * include/types/global.h |
| 3 | * Global variables. |
| 4 | * |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [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 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _TYPES_GLOBAL_H |
| 23 | #define _TYPES_GLOBAL_H |
| 24 | |
| 25 | #include <netinet/in.h> |
| 26 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 27 | #include <common/config.h> |
Willy Tarreau | c7e4238 | 2012-08-24 19:22:53 +0200 | [diff] [blame] | 28 | #include <types/freq_ctr.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 29 | #include <types/listener.h> |
Willy Tarreau | 89a6313 | 2009-08-16 17:41:45 +0200 | [diff] [blame] | 30 | #include <types/proxy.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | #include <types/task.h> |
| 32 | |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 33 | #ifndef UNIX_MAX_PATH |
| 34 | #define UNIX_MAX_PATH 108 |
| 35 | #endif |
| 36 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 37 | /* modes of operation (global.mode) */ |
Willy Tarreau | fbee713 | 2007-10-18 13:53:22 +0200 | [diff] [blame] | 38 | #define MODE_DEBUG 0x01 |
| 39 | #define MODE_DAEMON 0x02 |
| 40 | #define MODE_QUIET 0x04 |
| 41 | #define MODE_CHECK 0x08 |
| 42 | #define MODE_VERBOSE 0x10 |
| 43 | #define MODE_STARTING 0x20 |
| 44 | #define MODE_FOREGROUND 0x40 |
Marc-Antoine Perennou | 992709b | 2013-02-12 10:53:52 +0100 | [diff] [blame^] | 45 | #define MODE_SYSTEMD 0x80 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 46 | |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 47 | /* list of last checks to perform, depending on config options */ |
| 48 | #define LSTCHK_CAP_BIND 0x00000001 /* check that we can bind to any port */ |
| 49 | #define LSTCHK_CTTPROXY 0x00000002 /* check that tproxy is enabled */ |
| 50 | #define LSTCHK_NETADM 0x00000004 /* check that we have CAP_NET_ADMIN */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 51 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 52 | /* Global tuning options */ |
| 53 | /* available polling mechanisms */ |
| 54 | #define GTUNE_USE_SELECT (1<<0) |
| 55 | #define GTUNE_USE_POLL (1<<1) |
| 56 | #define GTUNE_USE_EPOLL (1<<2) |
| 57 | #define GTUNE_USE_KQUEUE (1<<3) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 58 | /* platform-specific options */ |
Willy Tarreau | e9f49e7 | 2012-11-11 17:42:00 +0100 | [diff] [blame] | 59 | #define GTUNE_USE_SPLICE (1<<4) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 60 | |
Willy Tarreau | 6162db2 | 2009-10-10 17:13:00 +0200 | [diff] [blame] | 61 | /* Access level for a stats socket */ |
| 62 | #define ACCESS_LVL_NONE 0 |
| 63 | #define ACCESS_LVL_USER 1 |
| 64 | #define ACCESS_LVL_OPER 2 |
| 65 | #define ACCESS_LVL_ADMIN 3 |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 66 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 67 | /* FIXME : this will have to be redefined correctly */ |
| 68 | struct global { |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 69 | #ifdef USE_OPENSSL |
| 70 | char *crt_base; /* base directory path for certificates */ |
| 71 | char *ca_base; /* base directory path for CAs and CRLs */ |
| 72 | #endif |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 73 | int uid; |
| 74 | int gid; |
| 75 | int nbproc; |
Willy Tarreau | 91886b6 | 2011-09-07 14:38:31 +0200 | [diff] [blame] | 76 | int maxconn, hardmaxconn; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 77 | #ifdef USE_OPENSSL |
| 78 | int maxsslconn; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 79 | char *listen_default_ciphers; |
| 80 | char *connect_default_ciphers; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 81 | #endif |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 82 | struct freq_ctr conn_per_sec; |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 83 | struct freq_ctr comp_bps_in; /* bytes per second, before http compression */ |
| 84 | struct freq_ctr comp_bps_out; /* bytes per second, after http compression */ |
Willy Tarreau | 81c25d0 | 2011-09-07 15:17:21 +0200 | [diff] [blame] | 85 | int cps_lim, cps_max; |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 86 | int comp_rate_lim; /* HTTP compression rate limit */ |
Willy Tarreau | 3ec79b9 | 2009-01-18 20:39:42 +0100 | [diff] [blame] | 87 | int maxpipes; /* max # of pipes */ |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 88 | int maxsock; /* max # of sockets */ |
| 89 | int rlimit_nofile; /* default ulimit-n value : 0=unset */ |
| 90 | int rlimit_memmax; /* default ulimit-d in megs value : 0=unset */ |
William Lallemand | e3a7d99 | 2012-11-20 11:25:20 +0100 | [diff] [blame] | 91 | long maxzlibmem; /* max RAM for zlib in bytes */ |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 92 | int mode; |
William Lallemand | 5f23240 | 2012-04-05 18:02:55 +0200 | [diff] [blame] | 93 | unsigned int req_count; /* HTTP request counter */ |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 94 | int last_checks; |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 95 | int spread_checks; |
Willy Tarreau | 77074d5 | 2006-11-12 23:57:19 +0100 | [diff] [blame] | 96 | char *chroot; |
| 97 | char *pidfile; |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 98 | char *node, *desc; /* node name & description */ |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 99 | char *log_tag; /* name for syslog */ |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 100 | struct list logsrvs; |
Joe Williams | df5b38f | 2010-12-29 17:05:48 +0100 | [diff] [blame] | 101 | char *log_send_hostname; /* set hostname in syslog header */ |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 102 | struct { |
| 103 | int maxpollevents; /* max number of poll events at once */ |
Willy Tarreau | a0250ba | 2008-01-06 11:22:57 +0100 | [diff] [blame] | 104 | int maxaccept; /* max number of consecutive accept() */ |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 105 | int options; /* various tuning options */ |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 106 | int recv_enough; /* how many input bytes at once are "enough" */ |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 107 | int bufsize; /* buffer size in bytes, defaults to BUFSIZE */ |
| 108 | int maxrewrite; /* buffer max rewrite size in bytes, defaults to MAXREWRITE */ |
Willy Tarreau | e803de2 | 2010-01-21 17:43:04 +0100 | [diff] [blame] | 109 | int client_sndbuf; /* set client sndbuf to this value if not null */ |
| 110 | int client_rcvbuf; /* set client rcvbuf to this value if not null */ |
| 111 | int server_sndbuf; /* set server sndbuf to this value if not null */ |
| 112 | int server_rcvbuf; /* set server rcvbuf to this value if not null */ |
Willy Tarreau | 43961d5 | 2010-10-04 20:39:20 +0200 | [diff] [blame] | 113 | int chksize; /* check buffer size in bytes, defaults to BUFSIZE */ |
Willy Tarreau | bd9a0a7 | 2011-10-23 21:14:29 +0200 | [diff] [blame] | 114 | int pipesize; /* pipe size in bytes, system defaults if zero */ |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 115 | int max_http_hdr; /* max number of HTTP headers, use MAX_HTTP_HDR if zero */ |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 116 | int cookie_len; /* max length of cookie captures */ |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 117 | #ifdef USE_OPENSSL |
| 118 | int sslcachesize; /* SSL cache size in session, defaults to 20000 */ |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 119 | unsigned int ssllifetime; /* SSL session lifetime in seconds */ |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 120 | #endif |
William Lallemand | a509e4c | 2012-11-07 16:54:34 +0100 | [diff] [blame] | 121 | #ifdef USE_ZLIB |
| 122 | int zlibmemlevel; /* zlib memlevel */ |
| 123 | int zlibwindowsize; /* zlib window size */ |
| 124 | #endif |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 125 | int comp_maxlevel; /* max HTTP compression level */ |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 126 | } tune; |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 127 | struct { |
| 128 | char *prefix; /* path prefix of unix bind socket */ |
| 129 | struct { /* UNIX socket permissions */ |
| 130 | uid_t uid; /* -1 to leave unchanged */ |
| 131 | gid_t gid; /* -1 to leave unchanged */ |
| 132 | mode_t mode; /* 0 to leave unchanged */ |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 133 | } ux; |
| 134 | } unix_bind; |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 135 | #ifdef USE_CPU_AFFINITY |
| 136 | unsigned long cpu_map[32]; /* list of CPU masks for the 32 first processes */ |
| 137 | #endif |
Willy Tarreau | 89a6313 | 2009-08-16 17:41:45 +0200 | [diff] [blame] | 138 | struct proxy *stats_fe; /* the frontend holding the stats settings */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | extern struct global global; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 142 | extern int pid; /* current process id */ |
Willy Tarreau | dcd4771 | 2007-11-04 23:35:08 +0100 | [diff] [blame] | 143 | extern int relative_pid; /* process id starting at 1 */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 144 | extern int actconn; /* # of active sessions */ |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 145 | extern int listeners; |
| 146 | extern int jobs; /* # of active jobs */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 147 | extern struct chunk trash; |
Willy Tarreau | 8096de9 | 2010-02-26 11:12:27 +0100 | [diff] [blame] | 148 | extern char *swap_buffer; |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 149 | extern int nb_oldpids; /* contains the number of old pids found */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 150 | extern const int zero; |
| 151 | extern const int one; |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 152 | extern const struct linger nolinger; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 153 | extern int stopping; /* non zero means stopping in progress */ |
Willy Tarreau | 3ad6a76 | 2009-08-16 10:08:02 +0200 | [diff] [blame] | 154 | extern char hostname[MAX_HOSTNAME_LEN]; |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 155 | extern char localpeer[MAX_HOSTNAME_LEN]; |
Willy Tarreau | 08ceb10 | 2011-07-24 22:58:00 +0200 | [diff] [blame] | 156 | extern struct list global_listener_queue; /* list of the temporarily limited listeners */ |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 157 | extern struct task *global_listener_queue_task; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 158 | |
| 159 | #endif /* _TYPES_GLOBAL_H */ |
| 160 | |
| 161 | /* |
| 162 | * Local variables: |
| 163 | * c-indent-level: 8 |
| 164 | * c-basic-offset: 8 |
| 165 | * End: |
| 166 | */ |