blob: ca6312df3bd31f332941183c88b5c92930140012 [file] [log] [blame]
Willy Tarreaub1a34b62010-05-09 22:37:12 +02001 ----------------------
2 HAProxy how-to
3 ----------------------
Willy Tarreaue0c623d2012-06-04 00:42:09 +02004 version 1.5-dev11
Willy Tarreaub1a34b62010-05-09 22:37:12 +02005 willy tarreau
Willy Tarreaue0c623d2012-06-04 00:42:09 +02006 2012/06/04
willy tarreau78345332005-12-18 01:33:16 +01007
8
Willy Tarreaub1a34b62010-05-09 22:37:12 +020091) How to build it
10------------------
11
willy tarreau78345332005-12-18 01:33:16 +010012To build haproxy, you will need :
Willy Tarreaub1a34b62010-05-09 22:37:12 +020013 - GNU make. Neither Solaris nor OpenBSD's make work with the GNU Makefile.
Willy Tarreau83b30c12008-05-25 10:32:50 +020014 However, specific Makefiles for BSD and OSX are provided.
Willy Tarreaub1a34b62010-05-09 22:37:12 +020015 - GCC between 2.91 and 4.5.0. Others may work, but not tested.
willy tarreau78345332005-12-18 01:33:16 +010016 - GNU ld
17
18Also, you might want to build with libpcre support, which will provide a very
Willy Tarreaub1a34b62010-05-09 22:37:12 +020019efficient regex implementation and will also fix some badness on Solaris' one.
willy tarreau78345332005-12-18 01:33:16 +010020
21To build haproxy, you have to choose your target OS amongst the following ones
22and assign it to the TARGET variable :
23
Willy Tarreau83b30c12008-05-25 10:32:50 +020024 - linux22 for Linux 2.2
25 - linux24 for Linux 2.4 and above (default)
26 - linux24e for Linux 2.4 with support for a working epoll (> 0.21)
Willy Tarreau83b30c12008-05-25 10:32:50 +020027 - linux26 for Linux 2.6 and above
Willy Tarreaue0c623d2012-06-04 00:42:09 +020028 - linux2628 for Linux 2.6.28 and above (enables splice and tproxy)
Willy Tarreau83b30c12008-05-25 10:32:50 +020029 - solaris for Solaris 8 or 10 (others untested)
Willy Tarreaub1a34b62010-05-09 22:37:12 +020030 - freebsd for FreeBSD 5 to 8.0 (others untested)
31 - openbsd for OpenBSD 3.1 to 4.6 (others untested)
Yitzhak Sapir32087312009-06-14 18:27:54 +020032 - cygwin for Cygwin
Willy Tarreau83b30c12008-05-25 10:32:50 +020033 - generic for any other OS.
34 - custom to manually adjust every setting
willy tarreau78345332005-12-18 01:33:16 +010035
36You may also choose your CPU to benefit from some optimizations. This is
37particularly important on UltraSparc machines. For this, you can assign
38one of the following choices to the CPU variable :
39
40 - i686 for intel PentiumPro, Pentium 2 and above, AMD Athlon
41 - i586 for intel Pentium, AMD K6, VIA C3.
42 - ultrasparc : Sun UltraSparc I/II/III/IV processor
Willy Tarreaua5899aa2010-11-28 07:41:00 +010043 - native : use the build machine's specific processor optimizations
willy tarreau78345332005-12-18 01:33:16 +010044 - generic : any other processor or no specific optimization. (default)
45
Willy Tarreau83b30c12008-05-25 10:32:50 +020046Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options
47for your platform.
48
Willy Tarreauef7341d2009-04-11 19:45:50 +020049You may want to build specific target binaries which do not match your native
50compiler's target. This is particularly true on 64-bit systems when you want
51to build a 32-bit binary. Use the ARCH variable for this purpose. Right now
Willy Tarreaua5899aa2010-11-28 07:41:00 +010052it only knows about a few x86 variants (i386,i486,i586,i686,x86_64), two
53generic ones (32,64) and sets -m32/-m64 as well as -march=<arch> accordingly.
Willy Tarreauef7341d2009-04-11 19:45:50 +020054
willy tarreau78345332005-12-18 01:33:16 +010055If your system supports PCRE (Perl Compatible Regular Expressions), then you
56really should build with libpcre which is between 2 and 10 times faster than
57other libc implementations. Regex are used for header processing (deletion,
58rewriting, allow, deny). The only inconvenient of libpcre is that it is not
59yet widely spread, so if you build for other systems, you might get into
60trouble if they don't have the dynamic library. In this situation, you should
61statically link libpcre into haproxy so that it will not be necessary to
Willy Tarreau83b30c12008-05-25 10:32:50 +020062install it on target systems. Available build options for PCRE are :
willy tarreau78345332005-12-18 01:33:16 +010063
Willy Tarreau83b30c12008-05-25 10:32:50 +020064 - USE_PCRE=1 to use libpcre, in whatever form is available on your system
willy tarreau78345332005-12-18 01:33:16 +010065 (shared or static)
66
Willy Tarreau83b30c12008-05-25 10:32:50 +020067 - USE_STATIC_PCRE=1 to use a static version of libpcre even if the dynamic
68 one is available. This will enhance portability.
69
70 - with no option, use your OS libc's standard regex implemntation (default).
71 Warning! group references on Solaris seem broken. Use static-pcre whenever
72 possible.
willy tarreau78345332005-12-18 01:33:16 +010073
Willy Tarreau64bc40b2011-03-23 20:00:53 +010074Recent systems can resolve IPv6 host names using getaddrinfo(). This primitive
75is not present in all libcs and does not work in all of them either. Support in
76glibc was broken before 2.3. Some embedded libs may not properly work either,
77thus, support is disabled by default, meaning that some host names which only
78resolve as IPv6 addresses will not resolve and configs might emit an error
79during parsing. If you know that your OS libc has reliable support for
80getaddrinfo(), you can add USE_GETADDRINFO=1 on the make command line to enable
81it. This is the recommended option for most Linux distro packagers since it's
82working fine on all recent mainstream distros. It is automatically enabled on
83Solaris 8 and above, as it's known to work.
84
willy tarreau78345332005-12-18 01:33:16 +010085By default, the DEBUG variable is set to '-g' to enable debug symbols. It is
86not wise to disable it on uncommon systems, because it's often the only way to
87get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to
88strip the binary.
89
90For example, I use this to build for Solaris 8 :
91
Willy Tarreau83b30c12008-05-25 10:32:50 +020092 $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1
willy tarreau78345332005-12-18 01:33:16 +010093
Willy Tarreau83b30c12008-05-25 10:32:50 +020094And I build it this way on OpenBSD or FreeBSD :
willy tarreaud38e72d2006-03-19 20:56:52 +010095
96 $ make -f Makefile.bsd REGEX=pcre DEBUG= COPTS.generic="-Os -fomit-frame-pointer -mgnu"
97
Willy Tarreauef7341d2009-04-11 19:45:50 +020098In order to build a 32-bit binary on an x86_64 Linux system :
99
100 $ make TARGET=linux26 ARCH=i386
101
willy tarreau78345332005-12-18 01:33:16 +0100102If you need to pass other defines, includes, libraries, etc... then please
103check the Makefile to see which ones will be available in your case, and
Willy Tarreau83b30c12008-05-25 10:32:50 +0200104use the USE_* variables in the GNU Makefile, or ADDINC, ADDLIB, and DEFINE
105variables in the BSD makefiles.
willy tarreau78345332005-12-18 01:33:16 +0100106
Willy Tarreau97ec9692010-01-28 20:52:05 +0100107AIX 5.3 is known to work with the generic target. However, for the binary to
108also run on 5.2 or earlier, you need to build with DEFINE="-D_MSGQSUPPORT",
109otherwise __fd_select() will be used while not being present in the libc.
110
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200111
1122) How to install it
113--------------------
114
115To install haproxy, you can either copy the single resulting binary to the
116place you want, or run :
117
118 $ sudo make install
119
120If you're packaging it for another system, you can specify its root directory
121in the usual DESTDIR variable.
122
123
1243) How to set it up
125-------------------
126
127There is some documentation in the doc/ directory :
128
129 - architecture.txt : this is the architecture manual. It is quite old and
130 does not tell about the nice new features, but it's still a good starting
131 point when you know what you want but don't know how to do it.
132
133 - configuration.txt : this is the configuration manual. It recalls a few
134 essential HTTP basic concepts, and details all the configuration file
135 syntax (keywords, units). It also describes the log and stats format. It
136 is normally always up to date. If you see that something is missing from
137 it, please report it as this is a bug.
138
139 - haproxy-en.txt / haproxy-fr.txt : these are the old outdated docs. You
140 should never need them. If you do, then please report what you didn't
141 find in the other ones.
142
143 - gpl.txt / lgpl.txt : the copy of the licenses covering the software. See
144 the 'LICENSE' file at the top for more information.
145
146 - the rest is mainly for developers.
147
148There are also a number of nice configuration examples in the "examples"
149directory as well as on several sites and articles on the net which are linked
150to from the haproxy web site.
151
152
1534) How to report a bug
154----------------------
155
156It is possible that from time to time you'll find a bug. A bug is a case where
157what you see is not what is documented. Otherwise it can be a misdesign. If you
158find that something is stupidly design, please discuss it on the list (see the
159"how to contribute" section below). If you feel like you're proceeding right
160and haproxy doesn't obey, then first ask yourself if it is possible that nobody
161before you has even encountered this issue. If it's unlikely, the you probably
162have an issue in your setup. Just in case of doubt, please consult the mailing
163list archives :
164
165 http://www.formilux.org/archives/haproxy/
166 http://marc.info/?l=haproxy
167
168Otherwise, please try to gather the maximum amount of information to help
169reproduce the issue and send that to the mailing list :
170
171 haproxy@formilux.org
172
173Please include your configuration and logs. You can mask your IP addresses and
174passwords, we don't need them. But it's essential that you post your config if
175you want people to guess what is happening.
176
177Also, keep in mind that haproxy is designed to NEVER CRASH. If you see it die
178without any reason, then it definitely is a critical bug that must be reported
179and urgently fixed. It has happened a couple of times in the past, essentially
180on development versions running on new architectures. If you think your setup
181is fairly common, then it is possible that the issue is totally unrelated.
182Anyway, if that happens, feel free to contact me directly, as I will give you
183instructions on how to collect a usable core file, and will probably ask for
184other captures that you'll not want to share with the list.
185
186
1875) How to contribute
188--------------------
189
190It is possible that you'll want to add a specific feature to satisfy your needs
191or one of your customers'. Contributions are welcome, however I'm often very
192picky about changes. I will generally reject patches that change massive parts
193of the code, or that touch the core parts without any good reason if those
194changes have not been discussed first.
195
196The proper place to discuss your changes is the HAProxy Mailing List. There are
197enough skilled readers to catch hazardous mistakes and to suggest improvements.
Willy Tarreau9a639a12011-09-10 22:48:36 +0200198I trust a number of them enough to merge a patch if they say it's OK, so using
199the list is the fastest way to get your code reviewed and merged. You can
200subscribe to it by sending an empty e-mail at the following address :
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200201
202 haproxy+subscribe@formilux.org
203
Willy Tarreau9a639a12011-09-10 22:48:36 +0200204If you have an idea about something to implement, *please* discuss it on the
205list first. It has already happened several times that two persons did the same
206thing simultaneously. This is a waste of time for both of them. It's also very
207common to see some changes rejected because they're done in a way that will
208conflict with future evolutions, or that does not leave a good feeling. It's
209always unpleasant for the person who did the work, and it is unpleasant for me
210too because I value people's time and efforts. That would not happen if these
211were discussed first. There is no problem posting work in progress to the list,
212it happens quite often in fact. Also, don't waste your time with the doc when
213submitting patches for review, only add the doc with the patch you consider
214ready to merge.
215
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200216If your work is very confidential and you can't publicly discuss it, you can
217also mail me directly about it, but your mail may be waiting several days in
218the queue before you get a response.
219
220If you'd like a feature to be added but you think you don't have the skills to
221implement it yourself, you should follow these steps :
222
223 1. discuss the feature on the mailing list. It is possible that someone
224 else has already implemented it, or that someone will tell you how to
225 proceed without it, or even why not to do it. It is also possible that
226 in fact it's quite easy to implement and people will guide you through
227 the process. That way you'll finally have YOUR patch merged, providing
228 the feature YOU need.
229
230 2. if you really can't code it yourself after discussing it, then you may
231 consider contacting someone to do the job for you. Some people on the
232 list might be OK with trying to do it. Otherwise, you can check the list
233 of contributors at the URL below, some of the regular contributors may
234 be able to do the work, probably not for free but their time is as much
235 valuable as yours after all, you can't eat the cake and have it too.
236
237The list of past and regular contributors is available below. It lists not only
238significant code contributions (features, fixes), but also time or money
239donations :
240
241 http://haproxy.1wt.eu/contrib.html
242
243Note to contributors: it's very handy when patches comes with a properly
Willy Tarreau9a639a12011-09-10 22:48:36 +0200244formated subject. There are 3 criteria of particular importance in any patch :
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200245
Willy Tarreau9a639a12011-09-10 22:48:36 +0200246 - its nature (is it a fix for a bug, a new feature, an optimization, ...)
247 - its importance, which generally reflects the risk of merging/not merging it
248 - what area it applies to (eg: http, stats, startup, config, doc, ...)
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200249
Willy Tarreau9a639a12011-09-10 22:48:36 +0200250It's important to make these 3 criteria easy to spot in the patch's subject,
251because it's the first (and sometimes the only) thing which is read when
252reviewing patches to find which ones need to be backported to older versions.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200253
Willy Tarreau9a639a12011-09-10 22:48:36 +0200254Specifically, bugs must be clearly easy to spot so that they're never missed.
255Any patch fixing a bug must have the "BUG" tag in its subject. Most common
256patch types include :
257
258 - BUG fix for a bug. The severity of the bug should also be indicated
259 when known. Similarly, if a backport is needed to older versions,
260 it should be indicated on the last line of the commit message. If
261 the bug has been identified as a regression brought by a specific
262 patch or version, this indication will be appreciated too. New
263 maintenance releases are generally emitted when a few of these
264 patches are merged.
265
266 - CLEANUP code cleanup, silence of warnings, etc... theorically no impact.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200267 These patches will rarely be seen in stable branches, though they
Willy Tarreau9a639a12011-09-10 22:48:36 +0200268 may appear when they remove some annoyance or when they make
269 backporting easier. By nature, a cleanup is always minor.
270
271 - REORG code reorganization. Some blocks may be moved to other places,
272 some important checks might be swapped, etc... These changes
273 always present a risk of regression. For this reason, they should
274 never be mixed with any bug fix nor functional change. Code is
275 only moved as-is. Indicating the risk of breakage is highly
276 recommended.
277
278 - BUILD updates or fixes for build issues. Changes to makefiles also fall
279 into this category. The risk of breakage should be indicated if
280 known. It is also appreciated to indicate what platforms and/or
281 configurations were tested after the change.
282
283 - OPTIM some code was optimised. Sometimes if the regression risk is very
284 low and the gains significant, such patches may be merged in the
285 stable branch. Depending on the amount of code changed or replaced
286 and the level of trust the author has in the change, the risk of
287 regression should be indicated.
288
289 - RELEASE release of a new version (development or stable).
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200290
Willy Tarreau9a639a12011-09-10 22:48:36 +0200291 - LICENSE licensing updates (may impact distro packagers).
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200292
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200293
Willy Tarreau9a639a12011-09-10 22:48:36 +0200294When the patch cannot be categorized, it's best not to put any tag. This is
295commonly the case for new features, which development versions are mostly made
296of.
297
298Additionally, the importance of the patch should be indicated when known. A
299single upper-case word is preferred, among :
300
301 - MINOR minor change, very low risk of impact. It is often the case for
302 code additions that don't touch live code. For a bug, it generally
303 indicates an annoyance, nothing more.
304
305 - MEDIUM medium risk, may cause unexpected regressions of low importance or
306 which may quickly be discovered. For a bug, it generally indicates
307 something odd which requires changing the configuration in an
308 undesired way to work around the issue.
309
310 - MAJOR major risk of hidden regression. This happens when I rearrange
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200311 large parts of code, when I play with timeouts, with variable
312 initializations, etc... We should only exceptionally find such
Willy Tarreau9a639a12011-09-10 22:48:36 +0200313 patches in stable branches. For a bug, it indicates severe
314 reliability issues for which workarounds are identified with or
315 without performance impacts.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200316
Willy Tarreau9a639a12011-09-10 22:48:36 +0200317 - CRITICAL medium-term reliability or security is at risk and workarounds,
318 if they exist, might not always be acceptable. An upgrade is
319 absolutely required. A maintenance release may be emitted even if
320 only one of these bugs are fixed. Note that this tag is only used
321 with bugs. Such patches must indicate what is the first version
322 affected, and if known, the commit ID which introduced the issue.
323
324If this criterion doesn't apply, it's best not to put it. For instance, most
325doc updates and most examples or test files are just added or updated without
326any need to qualify a level of importance.
327
328The area the patch applies to is quite important, because some areas are known
329to be similar in older versions, suggesting a backport might be desirable, and
330conversely, some areas are known to be specific to one version. When the tag is
331used alone, uppercase is preferred for readability, otherwise lowercase is fine
332too. The following tags are suggested but not limitative :
333
334 - doc documentation updates or fixes. No code is affected, no need to
335 upgrade. These patches can also be sent right after a new feature,
336 to document it.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200337
Willy Tarreau9a639a12011-09-10 22:48:36 +0200338 - examples example files. Be careful, sometimes these files are packaged.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200339
Willy Tarreau9a639a12011-09-10 22:48:36 +0200340 - tests regression test files. No code is affected, no need to upgrade.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200341
Willy Tarreau9a639a12011-09-10 22:48:36 +0200342 - init initialization code, arguments parsing, etc...
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200343
Willy Tarreau9a639a12011-09-10 22:48:36 +0200344 - config configuration parser, mostly used when adding new config keywords
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200345
Willy Tarreau9a639a12011-09-10 22:48:36 +0200346 - http the HTTP engine
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200347
Willy Tarreau9a639a12011-09-10 22:48:36 +0200348 - stats the stats reporting engine as well as the stats socket CLI
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200349
Willy Tarreau9a639a12011-09-10 22:48:36 +0200350 - checks the health checks engine (eg: when adding new checks)
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200351
Willy Tarreau9a639a12011-09-10 22:48:36 +0200352 - acl the ACL processing core or some ACLs from other areas
353
354 - peers the peer synchronization engine
355
356 - listeners everything related to incoming connection settings
357
358 - frontend everything related to incoming connection processing
359
360 - backend everything related to LB algorithms and server farm
361
362 - session session processing and flags (very sensible, be careful)
363
364 - server server connection management, queueing
365
366 - proxy proxy maintenance (start/stop)
367
368 - log log management
369
370 - poll any of the pollers
371
372 - halog the halog sub-component in the contrib directory
373
374 - contrib any addition to the contrib directory
375
376Other names may be invented when more precise indications are meaningful, for
377instance : "cookie" which indicates cookie processing in the HTTP core. Last,
378indicating the name of the affected file is also a good way to quickly spot
379changes. Many commits were already tagged with "stream_sock" or "cfgparse" for
380instance.
381
382It is desired that AT LEAST one of the 3 criteria tags is reported in the patch
383subject. Ideally, we would have the 3 most often. The two first criteria should
384be present before a first colon (':'). If both are present, then they should be
385delimited with a slash ('/'). The 3rd criterion (area) should appear next, also
386followed by a colon. Thus, all of the following messages are valid :
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200387
388Examples of messages :
Willy Tarreau9a639a12011-09-10 22:48:36 +0200389 - DOC: document options forwardfor to logasap
390 - DOC/MAJOR: reorganize the whole document and change indenting
391 - BUG: stats: connection reset counters must be plain ascii, not HTML
392 - BUG/MINOR: stats: connection reset counters must be plain ascii, not HTML
393 - MEDIUM: checks: support multi-packet health check responses
394 - RELEASE: Released version 1.4.2
395 - BUILD: stats: stdint is not present on solaris
396 - OPTIM/MINOR: halog: make fgets parse more bytes by blocks
397 - REORG/MEDIUM: move syscall redefinition to specific places
398
399Please do not use square brackets anymore around the tags, because they give me
400more work when merging patches. By default I'm asking Git to keep them but this
401causes trouble when patches are prefixed with the [PATCH] tag because in order
402not to store it, I have to hand-edit the patches. So as of now, I will ask Git
403to remove whatever is located between square brackets, which implies that any
404subject formatted the old way will have its tag stripped out.
405
406In fact, one of the only square bracket tags that still makes sense is '[RFC]'
407at the beginning of the subject, when you're asking for someone to review your
408change before getting it merged. If the patch is OK to be merged, then I can
409merge it as-is and the '[RFC]' tag will automatically be removed. If you don't
410want it to be merged at all, you can simply state it in the message, or use an
411alternate '[WIP]' tag ("work in progress").
412
413The tags are not rigid, follow your intuition first, anyway I reserve the right
414to change them when merging the patch. It may happen that a same patch has a
415different tag in two distinct branches. The reason is that a bug in one branch
416may just be a cleanup in the other one because the code cannot be triggered.
417
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200418
419For a more efficient interaction between the mainline code and your code, I can
420only strongly encourage you to try the Git version control system :
421
422 http://git-scm.com/
423
424It's very fast, lightweight and lets you undo/redo your work as often as you
425want, without making your mistakes visible to the rest of the world. It will
426definitely help you contribute quality code and take other people's feedback
427in consideration. In order to clone the HAProxy Git repository :
428
429 $ git clone http://git.1wt.eu/git/haproxy-1.4.git (stable 1.4)
430 $ git clone http://git.1wt.eu/git/haproxy.git/ (development)
431
432If you decide to use Git for your developments, then your commit messages will
433have the subject line in the format described above, then the whole description
434of your work (mainly why you did it) will be in the body. You can directly send
435your commits to the mailing list, the format is convenient to read and process.
436
willy tarreau78345332005-12-18 01:33:16 +0100437-- end