blob: 3d7df12f2b1aad4def6e543e51bc5f8719e77669 [file] [log] [blame]
Willy Tarreaub1a34b62010-05-09 22:37:12 +02001 ----------------------
2 HAProxy how-to
3 ----------------------
Willy Tarreau15480d72014-06-19 21:10:58 +02004 version 1.6-dev
Willy Tarreaub1a34b62010-05-09 22:37:12 +02005 willy tarreau
Willy Tarreau8747b6d2015-03-11 23:57:23 +01006 2015/03/11
willy tarreau78345332005-12-18 01:33:16 +01007
8
Willy Tarreaub1a34b62010-05-09 22:37:12 +020091) How to build it
10------------------
11
Willy Tarreau15480d72014-06-19 21:10:58 +020012First, please note that this version is a development version, so in general if
13you are not used to build from sources or if you don't have the time to track
14very frequent updates, it is recommended that instead you switch to the stable
15version (1.5) or follow the packaged updates provided by your software vendor
16or Linux distribution. Most of them are taking this task seriously and are
17doing a good job. If for any reason you'd prefer a different version than the
18one packaged for your system, or to get some commercial support, other choices
19are available at :
Willy Tarreau869f3512014-06-19 15:26:32 +020020
21 http://www.haproxy.com/
22
willy tarreau78345332005-12-18 01:33:16 +010023To build haproxy, you will need :
Willy Tarreaub1a34b62010-05-09 22:37:12 +020024 - GNU make. Neither Solaris nor OpenBSD's make work with the GNU Makefile.
Willy Tarreau3543cdb2014-05-10 09:12:46 +020025 If you get many syntax errors when running "make", you may want to retry
26 with "gmake" which is the name commonly used for GNU make on BSD systems.
Willy Tarreau869f3512014-06-19 15:26:32 +020027 - GCC between 2.95 and 4.8. Others may work, but not tested.
willy tarreau78345332005-12-18 01:33:16 +010028 - GNU ld
29
30Also, you might want to build with libpcre support, which will provide a very
Willy Tarreaub1a34b62010-05-09 22:37:12 +020031efficient regex implementation and will also fix some badness on Solaris' one.
willy tarreau78345332005-12-18 01:33:16 +010032
33To build haproxy, you have to choose your target OS amongst the following ones
34and assign it to the TARGET variable :
35
Willy Tarreau83b30c12008-05-25 10:32:50 +020036 - linux22 for Linux 2.2
37 - linux24 for Linux 2.4 and above (default)
38 - linux24e for Linux 2.4 with support for a working epoll (> 0.21)
Willy Tarreau83b30c12008-05-25 10:32:50 +020039 - linux26 for Linux 2.6 and above
Willy Tarreau869f3512014-06-19 15:26:32 +020040 - linux2628 for Linux 2.6.28, 3.x, and above (enables splice and tproxy)
Willy Tarreau83b30c12008-05-25 10:32:50 +020041 - solaris for Solaris 8 or 10 (others untested)
Willy Tarreau869f3512014-06-19 15:26:32 +020042 - freebsd for FreeBSD 5 to 10 (others untested)
Willy Tarreau8624cab2013-04-02 08:17:43 +020043 - osx for Mac OS/X
Willy Tarreau3b8e9792012-11-22 00:43:09 +010044 - openbsd for OpenBSD 3.1 to 5.2 (others untested)
Willy Tarreau50abe302014-04-02 20:44:43 +020045 - aix51 for AIX 5.1
Willy Tarreau7dec9652012-06-06 16:15:03 +020046 - aix52 for AIX 5.2
Yitzhak Sapir32087312009-06-14 18:27:54 +020047 - cygwin for Cygwin
Willy Tarreau869f3512014-06-19 15:26:32 +020048 - generic for any other OS or version.
Willy Tarreau83b30c12008-05-25 10:32:50 +020049 - custom to manually adjust every setting
willy tarreau78345332005-12-18 01:33:16 +010050
51You may also choose your CPU to benefit from some optimizations. This is
52particularly important on UltraSparc machines. For this, you can assign
53one of the following choices to the CPU variable :
54
55 - i686 for intel PentiumPro, Pentium 2 and above, AMD Athlon
56 - i586 for intel Pentium, AMD K6, VIA C3.
57 - ultrasparc : Sun UltraSparc I/II/III/IV processor
Willy Tarreau817dad52014-07-10 20:24:25 +020058 - native : use the build machine's specific processor optimizations. Use with
59 extreme care, and never in virtualized environments (known to break).
60 - generic : any other processor or no CPU-specific optimization. (default)
willy tarreau78345332005-12-18 01:33:16 +010061
Willy Tarreau83b30c12008-05-25 10:32:50 +020062Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options
63for your platform.
64
Willy Tarreauef7341d2009-04-11 19:45:50 +020065You may want to build specific target binaries which do not match your native
66compiler's target. This is particularly true on 64-bit systems when you want
67to build a 32-bit binary. Use the ARCH variable for this purpose. Right now
Willy Tarreaua5899aa2010-11-28 07:41:00 +010068it only knows about a few x86 variants (i386,i486,i586,i686,x86_64), two
69generic ones (32,64) and sets -m32/-m64 as well as -march=<arch> accordingly.
Willy Tarreauef7341d2009-04-11 19:45:50 +020070
willy tarreau78345332005-12-18 01:33:16 +010071If your system supports PCRE (Perl Compatible Regular Expressions), then you
72really should build with libpcre which is between 2 and 10 times faster than
73other libc implementations. Regex are used for header processing (deletion,
74rewriting, allow, deny). The only inconvenient of libpcre is that it is not
75yet widely spread, so if you build for other systems, you might get into
76trouble if they don't have the dynamic library. In this situation, you should
77statically link libpcre into haproxy so that it will not be necessary to
Willy Tarreau83b30c12008-05-25 10:32:50 +020078install it on target systems. Available build options for PCRE are :
willy tarreau78345332005-12-18 01:33:16 +010079
Willy Tarreau83b30c12008-05-25 10:32:50 +020080 - USE_PCRE=1 to use libpcre, in whatever form is available on your system
willy tarreau78345332005-12-18 01:33:16 +010081 (shared or static)
82
Willy Tarreau83b30c12008-05-25 10:32:50 +020083 - USE_STATIC_PCRE=1 to use a static version of libpcre even if the dynamic
84 one is available. This will enhance portability.
85
Willy Tarreau663148c2012-12-12 00:38:22 +010086 - with no option, use your OS libc's standard regex implementation (default).
Willy Tarreau83b30c12008-05-25 10:32:50 +020087 Warning! group references on Solaris seem broken. Use static-pcre whenever
88 possible.
willy tarreau78345332005-12-18 01:33:16 +010089
Willy Tarreau64bc40b2011-03-23 20:00:53 +010090Recent systems can resolve IPv6 host names using getaddrinfo(). This primitive
91is not present in all libcs and does not work in all of them either. Support in
92glibc was broken before 2.3. Some embedded libs may not properly work either,
93thus, support is disabled by default, meaning that some host names which only
94resolve as IPv6 addresses will not resolve and configs might emit an error
95during parsing. If you know that your OS libc has reliable support for
96getaddrinfo(), you can add USE_GETADDRINFO=1 on the make command line to enable
97it. This is the recommended option for most Linux distro packagers since it's
98working fine on all recent mainstream distros. It is automatically enabled on
99Solaris 8 and above, as it's known to work.
100
Willy Tarreau3543cdb2014-05-10 09:12:46 +0200101It is possible to add native support for SSL using the GNU makefile, by passing
102"USE_OPENSSL=1" on the make command line. The libssl and libcrypto will
103automatically be linked with haproxy. Some systems also require libz, so if the
104build fails due to missing symbols such as deflateInit(), then try again with
105"ADDLIB=-lz".
Willy Tarreaud4508812012-09-10 09:07:41 +0200106
Lukas Tribus3fe9f1e2013-05-19 16:28:17 +0200107To link OpenSSL statically against haproxy, build OpenSSL with the no-shared
108keyword and install it to a local directory, so your system is not affected :
109
110 $ export STATICLIBSSL=/tmp/staticlibssl
111 $ ./config --prefix=$STATICLIBSSL no-shared
112 $ make && make install_sw
113
Lukas Tribus130ddf72013-10-01 00:28:03 +0200114When building haproxy, pass that path via SSL_INC and SSL_LIB to make and
115include additional libs with ADDLIB if needed (in this case for example libdl):
Willy Tarreau3543cdb2014-05-10 09:12:46 +0200116
Lukas Tribus130ddf72013-10-01 00:28:03 +0200117 $ make TARGET=linux26 USE_OPENSSL=1 SSL_INC=$STATICLIBSSL/include SSL_LIB=$STATICLIBSSL/lib ADDLIB=-ldl
Lukas Tribus3fe9f1e2013-05-19 16:28:17 +0200118
William Lallemand82fe75c2012-10-23 10:25:10 +0200119It is also possible to include native support for ZLIB to benefit from HTTP
120compression. For this, pass "USE_ZLIB=1" on the "make" command line and ensure
Willy Tarreau418b8c02015-03-29 03:32:06 +0200121that zlib is present on the system. Alternatively it is possible to use libslz
122for a faster, memory less, but slightly less efficient compression, by passing
123"USE_SLZ=1".
William Lallemand82fe75c2012-10-23 10:25:10 +0200124
willy tarreau78345332005-12-18 01:33:16 +0100125By default, the DEBUG variable is set to '-g' to enable debug symbols. It is
126not wise to disable it on uncommon systems, because it's often the only way to
127get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to
128strip the binary.
129
130For example, I use this to build for Solaris 8 :
131
Willy Tarreau83b30c12008-05-25 10:32:50 +0200132 $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1
willy tarreau78345332005-12-18 01:33:16 +0100133
Willy Tarreau83b30c12008-05-25 10:32:50 +0200134And I build it this way on OpenBSD or FreeBSD :
willy tarreaud38e72d2006-03-19 20:56:52 +0100135
Willy Tarreau3543cdb2014-05-10 09:12:46 +0200136 $ gmake TARGET=freebsd USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1
willy tarreaud38e72d2006-03-19 20:56:52 +0100137
Willy Tarreau663148c2012-12-12 00:38:22 +0100138And on a classic Linux with SSL and ZLIB support (eg: Red Hat 5.x) :
139
Willy Tarreau817dad52014-07-10 20:24:25 +0200140 $ make TARGET=linux26 USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1
Willy Tarreau663148c2012-12-12 00:38:22 +0100141
142And on a recent Linux >= 2.6.28 with SSL and ZLIB support :
Willy Tarreaud4508812012-09-10 09:07:41 +0200143
Willy Tarreau817dad52014-07-10 20:24:25 +0200144 $ make TARGET=linux2628 USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1
Willy Tarreaud4508812012-09-10 09:07:41 +0200145
William Lallemand82fe75c2012-10-23 10:25:10 +0200146In order to build a 32-bit binary on an x86_64 Linux system with SSL support
147without support for compression but when OpenSSL requires ZLIB anyway :
Willy Tarreauef7341d2009-04-11 19:45:50 +0200148
Willy Tarreaud4508812012-09-10 09:07:41 +0200149 $ make TARGET=linux26 ARCH=i386 USE_OPENSSL=1 ADDLIB=-lz
Willy Tarreauef7341d2009-04-11 19:45:50 +0200150
Willy Tarreaub1efede2014-05-09 00:44:48 +0200151The SSL stack supports session cache synchronization between all running
152processes. This involves some atomic operations and synchronization operations
153which come in multiple flavors depending on the system and architecture :
154
155 Atomic operations :
156 - internal assembler versions for x86/x86_64 architectures
157
158 - gcc builtins for other architectures. Some architectures might not
159 be fully supported or might require a more recent version of gcc.
160 If your architecture is not supported, you willy have to either use
161 pthread if supported, or to disable the shared cache.
162
163 - pthread (posix threads). Pthreads are very common but inter-process
164 support is not that common, and some older operating systems did not
165 report an error when enabling multi-process mode, so they used to
166 silently fail, possibly causing crashes. Linux's implementation is
167 fine. OpenBSD doesn't support them and doesn't build. FreeBSD 9 builds
168 and reports an error at runtime, while certain older versions might
169 silently fail. Pthreads are enabled using USE_PTHREAD_PSHARED=1.
170
171 Synchronization operations :
172 - internal spinlock : this mode is OS-independant, light but will not
173 scale well to many processes. However, accesses to the session cache
174 are rare enough that this mode could certainly always be used. This
175 is the default mode.
176
177 - Futexes, which are Linux-specific highly scalable light weight mutexes
178 implemented in user-space with some limited assistance from the kernel.
179 This is the default on Linux 2.6 and above and is enabled by passing
180 USE_FUTEX=1
181
182 - pthread (posix threads). See above.
183
184If none of these mechanisms is supported by your platform, you may need to
185build with USE_PRIVATE_CACHE=1 to totally disable SSL cache sharing. Then
186it is better not to run SSL on multiple processes.
187
willy tarreau78345332005-12-18 01:33:16 +0100188If you need to pass other defines, includes, libraries, etc... then please
189check the Makefile to see which ones will be available in your case, and
Willy Tarreau3543cdb2014-05-10 09:12:46 +0200190use the USE_* variables in the Makefile.
willy tarreau78345332005-12-18 01:33:16 +0100191
Willy Tarreau97ec9692010-01-28 20:52:05 +0100192AIX 5.3 is known to work with the generic target. However, for the binary to
193also run on 5.2 or earlier, you need to build with DEFINE="-D_MSGQSUPPORT",
Willy Tarreau869f3512014-06-19 15:26:32 +0200194otherwise __fd_select() will be used while not being present in the libc, but
195this is easily addressed using the "aix52" target. If you get build errors
196because of strange symbols or section mismatches, simply remove -g from
197DEBUG_CFLAGS.
Willy Tarreau97ec9692010-01-28 20:52:05 +0100198
Willy Tarreau32e65ef2013-04-02 08:14:29 +0200199You can easily define your own target with the GNU Makefile. Unknown targets
200are processed with no default option except USE_POLL=default. So you can very
201well use that property to define your own set of options. USE_POLL can even be
202disabled by setting USE_POLL="". For example :
203
204 $ gmake TARGET=tiny USE_POLL="" TARGET_CFLAGS=-fomit-frame-pointer
205
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200206
David Carlierb5efa012015-06-01 14:21:47 +02002071.1) DeviceAtlas Device Detection
208---------------------------------
209
210In order to add DeviceAtlas Device Detection support, you would need to download
211the API source code from https://deviceatlas.com/deviceatlas-haproxy-module and
212once extracted :
213
214 $ make TARGET=<target> USE_PCRE=1 USE_DEVICEATLAS=1 DEVICEATLAS_INC=<path to the API root folder> DEVICEATLAS_LIB=<path to the API root folder>
215
216These are supported DeviceAtlas directives (see doc/configuration.txt) :
217 - deviceatlas-json-file <path to the DeviceAtlas JSON data file>.
218 - deviceatlas-log-level <number> (0 to 3, level of information returned by
219 the API, 0 by default).
220 - deviceatlas-property-separator <character> (character used to separate the
221 properties produced by the API, | by default).
222
223Sample configuration :
224
225 global
226 deviceatlas-json-file <path to json file>
227
228 ...
229 frontend
230 bind *:8881
231 default_backend servers
232 http-request set-header X-DeviceAtlas-Data %[req.fhdr(User-Agent),da-csv(primaryHardwareType,osName,osVersion,browserName,browserVersion)]
233
234
Thomas Holmesf95aaf62015-05-29 15:21:42 +01002351.2) 51Degrees Device Detection
236-------------------------------
237
238You can also include 51Degrees for inbuilt device detection enabling attributes
239such as screen size (physical & pixels), supported input methods, release date,
240hardware vendor and model, browser information, and device price among many
241others. Such information can be used to improve the user experience of a web
242site by tailoring the page content, layout and business processes to the
243precise characteristics of the device. Such customisations improve profit by
244making it easier for customers to get to the information or services they
245need. Theses attributes of the device making a web request can be added to HTTP
246headers as configurable parameters.
247
Willy Tarreauc7203c72015-06-01 11:12:35 +0200248In order to enable 51Degrees get the 51Degrees source code from the official
249github repository :
Thomas Holmesf95aaf62015-05-29 15:21:42 +0100250
Willy Tarreauc7203c72015-06-01 11:12:35 +0200251 git clone https://github.com/51Degreesmobi/51Degrees-C
252
253then run 'make' with USE_51DEGREES and 51DEGREES_SRC set. Both 51DEGREES_INC
254and 51DEGREES_LIB may additionally be used to force specific different paths
255for .o and .h, but will default to 51DEGREES_SRC. Make sure to replace
256'51D_REPO_PATH' with the path to the 51Degrees repository.
Thomas Holmesf95aaf62015-05-29 15:21:42 +0100257
Willy Tarreauc7203c72015-06-01 11:12:35 +020025851Degrees provide 2 different detection algorithms :
259 1. Pattern - balances main memory usage and CPU.
260 2. Trie - a very high performance detection solution which uses more main
261 memory than Pattern.
Thomas Holmesf95aaf62015-05-29 15:21:42 +0100262
263To make with 51Degrees Pattern algorithm use the following command line.
264
Willy Tarreauc7203c72015-06-01 11:12:35 +0200265 $ make TARGET=linux26 USE_51DEGREES=1 51DEGREES_SRC='51D_REPO_PATH'/src/pattern
Thomas Holmesf95aaf62015-05-29 15:21:42 +0100266
267To use the 51Degrees Trie algorithm use the following command line.
268
Willy Tarreauc7203c72015-06-01 11:12:35 +0200269 $ make TARGET=linux26 USE_51DEGREES=1 51DEGREES_SRC='51D_REPO_PATH'/src/trie
Thomas Holmesf95aaf62015-05-29 15:21:42 +0100270
271A data file containing information about devices, browsers, operating systems
272and their associated signatures is then needed. 51Degrees provide a free
273database with Github repo for this purpose. These free data files are located
274in '51D_REPO_PATH'/data with the extensions .dat for Pattern data and .trie for
275Trie data.
276
277The configuration file needs to set the following parameters:
278
279 51degrees-data-file path to the pattern or trie data file
280 51degrees-property-name-list list of 51Degrees properties to detect
281 51degrees-property-seperator seperator to use between values
282
283The following is an example of the settings for Pattern.
284
285 51degrees-data-file '51D_REPO_PATH'/data/51Degrees-Lite.dat
286 51degrees-property-name-list IsTablet DeviceType IsMobile
287 51degrees-property-seperator ,
288
289HAProxy needs a way to pass device information to the backend servers. This is
290done by using the 51d converter, which intercepts the User-Agent header and
291creates some new headers. This is controlled in the frontend http-in section
292
293The following is an example which adds two new HTTP headers prefixed X-51D-
294
295 frontend http-in
296 bind *:8081
297 default_backend servers
298 http-request set-header X-51D-DeviceTypeMobileTablet %[req.fhdr(User-Agent),51d(DeviceType,IsMobile,IsTablet)]
299 http-request set-header X-51D-Tablet %[req.fhdr(User-Agent),51d(IsTablet)]
300
301Here, two headers are created with 51Degrees data, X-51D-DeviceTypeMobileTablet
302and X-51D-Tablet. Any number of headers can be created this way and can be
303named anything. The User-Agent header is passed to the converter in
304req.fhdr(User-Agent). 51d( ) invokes the 51degrees converter. It can be passed
305up to five property names of values to return. Values will be returned in the
306same order, seperated by the 51-degrees-property-seperator configured earlier.
307If a property name can't be found the value 'NoData' is returned instead.
308
309The free Lite data file contains information about screen size in pixels and
310whether the device is a mobile. A full list of available properties is located
311on the 51Degrees web site at:
312
313 https://51degrees.com/resources/property-dictionary.
314
315Some properties are only available in the paid for Premium and Enterprise
316versions of 51Degrees. These data sets no only contain more properties but
317are updated weekly and daily and contain signatures for 100,000s of different
318device combinations. For more information see the data options comparison web
319page:
320
321 https://51degrees.com/compare-data-options
322
323
Willy Tarreaub1a34b62010-05-09 22:37:12 +02003242) How to install it
325--------------------
326
327To install haproxy, you can either copy the single resulting binary to the
328place you want, or run :
329
330 $ sudo make install
331
332If you're packaging it for another system, you can specify its root directory
333in the usual DESTDIR variable.
334
335
3363) How to set it up
337-------------------
338
339There is some documentation in the doc/ directory :
340
341 - architecture.txt : this is the architecture manual. It is quite old and
342 does not tell about the nice new features, but it's still a good starting
343 point when you know what you want but don't know how to do it.
344
345 - configuration.txt : this is the configuration manual. It recalls a few
346 essential HTTP basic concepts, and details all the configuration file
347 syntax (keywords, units). It also describes the log and stats format. It
348 is normally always up to date. If you see that something is missing from
Willy Tarreau74774c02014-04-23 00:57:08 +0200349 it, please report it as this is a bug. Please note that this file is
350 huge and that it's generally more convenient to review Cyril Bonté's
351 HTML translation online here :
352
353 http://cbonte.github.io/haproxy-dconv/configuration-1.5.html
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200354
355 - haproxy-en.txt / haproxy-fr.txt : these are the old outdated docs. You
356 should never need them. If you do, then please report what you didn't
357 find in the other ones.
358
359 - gpl.txt / lgpl.txt : the copy of the licenses covering the software. See
360 the 'LICENSE' file at the top for more information.
361
362 - the rest is mainly for developers.
363
364There are also a number of nice configuration examples in the "examples"
365directory as well as on several sites and articles on the net which are linked
366to from the haproxy web site.
367
368
3694) How to report a bug
370----------------------
371
372It is possible that from time to time you'll find a bug. A bug is a case where
373what you see is not what is documented. Otherwise it can be a misdesign. If you
374find that something is stupidly design, please discuss it on the list (see the
375"how to contribute" section below). If you feel like you're proceeding right
376and haproxy doesn't obey, then first ask yourself if it is possible that nobody
377before you has even encountered this issue. If it's unlikely, the you probably
378have an issue in your setup. Just in case of doubt, please consult the mailing
379list archives :
380
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200381 http://marc.info/?l=haproxy
382
383Otherwise, please try to gather the maximum amount of information to help
384reproduce the issue and send that to the mailing list :
385
386 haproxy@formilux.org
387
388Please include your configuration and logs. You can mask your IP addresses and
389passwords, we don't need them. But it's essential that you post your config if
390you want people to guess what is happening.
391
392Also, keep in mind that haproxy is designed to NEVER CRASH. If you see it die
393without any reason, then it definitely is a critical bug that must be reported
394and urgently fixed. It has happened a couple of times in the past, essentially
395on development versions running on new architectures. If you think your setup
396is fairly common, then it is possible that the issue is totally unrelated.
397Anyway, if that happens, feel free to contact me directly, as I will give you
398instructions on how to collect a usable core file, and will probably ask for
399other captures that you'll not want to share with the list.
400
401
4025) How to contribute
403--------------------
404
405It is possible that you'll want to add a specific feature to satisfy your needs
406or one of your customers'. Contributions are welcome, however I'm often very
407picky about changes. I will generally reject patches that change massive parts
408of the code, or that touch the core parts without any good reason if those
409changes have not been discussed first.
410
411The proper place to discuss your changes is the HAProxy Mailing List. There are
412enough skilled readers to catch hazardous mistakes and to suggest improvements.
Willy Tarreau9a639a12011-09-10 22:48:36 +0200413I trust a number of them enough to merge a patch if they say it's OK, so using
414the list is the fastest way to get your code reviewed and merged. You can
415subscribe to it by sending an empty e-mail at the following address :
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200416
417 haproxy+subscribe@formilux.org
418
Willy Tarreau9a639a12011-09-10 22:48:36 +0200419If you have an idea about something to implement, *please* discuss it on the
420list first. It has already happened several times that two persons did the same
421thing simultaneously. This is a waste of time for both of them. It's also very
422common to see some changes rejected because they're done in a way that will
423conflict with future evolutions, or that does not leave a good feeling. It's
424always unpleasant for the person who did the work, and it is unpleasant for me
425too because I value people's time and efforts. That would not happen if these
426were discussed first. There is no problem posting work in progress to the list,
427it happens quite often in fact. Also, don't waste your time with the doc when
428submitting patches for review, only add the doc with the patch you consider
429ready to merge.
430
Willy Tarreau2ddccb72013-05-01 10:07:21 +0200431Another important point concerns code portability. Haproxy requires gcc as the
432C compiler, and may or may not work with other compilers. However it's known
433to build using gcc 2.95 or any later version. As such, it is important to keep
434in mind that certain facilities offered by recent versions must not be used in
435the code :
436
437 - declarations mixed in the code (requires gcc >= 3.x)
438 - GCC builtins without checking for their availability based on version and
439 architecture ;
440 - assembly code without any alternate portable form for other platforms
441 - use of stdbool.h, "bool", "false", "true" : simply use "int", "0", "1"
442 - in general, anything which requires C99 (such as declaring variables in
443 "for" statements)
444
445Since most of these restrictions are just a matter of coding style, it is
446normally not a problem to comply.
447
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200448If your work is very confidential and you can't publicly discuss it, you can
449also mail me directly about it, but your mail may be waiting several days in
450the queue before you get a response.
451
452If you'd like a feature to be added but you think you don't have the skills to
453implement it yourself, you should follow these steps :
454
455 1. discuss the feature on the mailing list. It is possible that someone
456 else has already implemented it, or that someone will tell you how to
457 proceed without it, or even why not to do it. It is also possible that
458 in fact it's quite easy to implement and people will guide you through
459 the process. That way you'll finally have YOUR patch merged, providing
460 the feature YOU need.
461
462 2. if you really can't code it yourself after discussing it, then you may
463 consider contacting someone to do the job for you. Some people on the
Willy Tarreau869f3512014-06-19 15:26:32 +0200464 list might sometimes be OK with trying to do it.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200465
466Note to contributors: it's very handy when patches comes with a properly
Willy Tarreau9a639a12011-09-10 22:48:36 +0200467formated subject. There are 3 criteria of particular importance in any patch :
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200468
Willy Tarreau9a639a12011-09-10 22:48:36 +0200469 - its nature (is it a fix for a bug, a new feature, an optimization, ...)
470 - its importance, which generally reflects the risk of merging/not merging it
471 - what area it applies to (eg: http, stats, startup, config, doc, ...)
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200472
Willy Tarreau9a639a12011-09-10 22:48:36 +0200473It's important to make these 3 criteria easy to spot in the patch's subject,
474because it's the first (and sometimes the only) thing which is read when
475reviewing patches to find which ones need to be backported to older versions.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200476
Willy Tarreau9a639a12011-09-10 22:48:36 +0200477Specifically, bugs must be clearly easy to spot so that they're never missed.
478Any patch fixing a bug must have the "BUG" tag in its subject. Most common
479patch types include :
480
481 - BUG fix for a bug. The severity of the bug should also be indicated
482 when known. Similarly, if a backport is needed to older versions,
483 it should be indicated on the last line of the commit message. If
484 the bug has been identified as a regression brought by a specific
485 patch or version, this indication will be appreciated too. New
486 maintenance releases are generally emitted when a few of these
487 patches are merged.
488
489 - CLEANUP code cleanup, silence of warnings, etc... theorically no impact.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200490 These patches will rarely be seen in stable branches, though they
Willy Tarreau9a639a12011-09-10 22:48:36 +0200491 may appear when they remove some annoyance or when they make
492 backporting easier. By nature, a cleanup is always minor.
493
494 - REORG code reorganization. Some blocks may be moved to other places,
495 some important checks might be swapped, etc... These changes
496 always present a risk of regression. For this reason, they should
497 never be mixed with any bug fix nor functional change. Code is
498 only moved as-is. Indicating the risk of breakage is highly
499 recommended.
500
501 - BUILD updates or fixes for build issues. Changes to makefiles also fall
502 into this category. The risk of breakage should be indicated if
503 known. It is also appreciated to indicate what platforms and/or
504 configurations were tested after the change.
505
506 - OPTIM some code was optimised. Sometimes if the regression risk is very
507 low and the gains significant, such patches may be merged in the
508 stable branch. Depending on the amount of code changed or replaced
509 and the level of trust the author has in the change, the risk of
510 regression should be indicated.
511
512 - RELEASE release of a new version (development or stable).
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200513
Willy Tarreau9a639a12011-09-10 22:48:36 +0200514 - LICENSE licensing updates (may impact distro packagers).
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200515
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200516
Willy Tarreau9a639a12011-09-10 22:48:36 +0200517When the patch cannot be categorized, it's best not to put any tag. This is
518commonly the case for new features, which development versions are mostly made
519of.
520
521Additionally, the importance of the patch should be indicated when known. A
522single upper-case word is preferred, among :
523
524 - MINOR minor change, very low risk of impact. It is often the case for
525 code additions that don't touch live code. For a bug, it generally
526 indicates an annoyance, nothing more.
527
528 - MEDIUM medium risk, may cause unexpected regressions of low importance or
529 which may quickly be discovered. For a bug, it generally indicates
530 something odd which requires changing the configuration in an
531 undesired way to work around the issue.
532
533 - MAJOR major risk of hidden regression. This happens when I rearrange
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200534 large parts of code, when I play with timeouts, with variable
535 initializations, etc... We should only exceptionally find such
Willy Tarreau9a639a12011-09-10 22:48:36 +0200536 patches in stable branches. For a bug, it indicates severe
537 reliability issues for which workarounds are identified with or
538 without performance impacts.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200539
Willy Tarreau9a639a12011-09-10 22:48:36 +0200540 - CRITICAL medium-term reliability or security is at risk and workarounds,
541 if they exist, might not always be acceptable. An upgrade is
542 absolutely required. A maintenance release may be emitted even if
543 only one of these bugs are fixed. Note that this tag is only used
544 with bugs. Such patches must indicate what is the first version
545 affected, and if known, the commit ID which introduced the issue.
546
547If this criterion doesn't apply, it's best not to put it. For instance, most
548doc updates and most examples or test files are just added or updated without
549any need to qualify a level of importance.
550
551The area the patch applies to is quite important, because some areas are known
552to be similar in older versions, suggesting a backport might be desirable, and
553conversely, some areas are known to be specific to one version. When the tag is
554used alone, uppercase is preferred for readability, otherwise lowercase is fine
555too. The following tags are suggested but not limitative :
556
557 - doc documentation updates or fixes. No code is affected, no need to
558 upgrade. These patches can also be sent right after a new feature,
559 to document it.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200560
Willy Tarreau9a639a12011-09-10 22:48:36 +0200561 - examples example files. Be careful, sometimes these files are packaged.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200562
Willy Tarreau9a639a12011-09-10 22:48:36 +0200563 - tests regression test files. No code is affected, no need to upgrade.
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200564
Willy Tarreau9a639a12011-09-10 22:48:36 +0200565 - init initialization code, arguments parsing, etc...
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200566
Willy Tarreau9a639a12011-09-10 22:48:36 +0200567 - config configuration parser, mostly used when adding new config keywords
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200568
Willy Tarreau9a639a12011-09-10 22:48:36 +0200569 - http the HTTP engine
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200570
Willy Tarreau9a639a12011-09-10 22:48:36 +0200571 - stats the stats reporting engine as well as the stats socket CLI
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200572
Willy Tarreau9a639a12011-09-10 22:48:36 +0200573 - checks the health checks engine (eg: when adding new checks)
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200574
Willy Tarreau9a639a12011-09-10 22:48:36 +0200575 - acl the ACL processing core or some ACLs from other areas
576
577 - peers the peer synchronization engine
578
579 - listeners everything related to incoming connection settings
580
581 - frontend everything related to incoming connection processing
582
583 - backend everything related to LB algorithms and server farm
584
585 - session session processing and flags (very sensible, be careful)
586
587 - server server connection management, queueing
588
589 - proxy proxy maintenance (start/stop)
590
591 - log log management
592
593 - poll any of the pollers
594
595 - halog the halog sub-component in the contrib directory
596
597 - contrib any addition to the contrib directory
598
599Other names may be invented when more precise indications are meaningful, for
600instance : "cookie" which indicates cookie processing in the HTTP core. Last,
601indicating the name of the affected file is also a good way to quickly spot
602changes. Many commits were already tagged with "stream_sock" or "cfgparse" for
603instance.
604
605It is desired that AT LEAST one of the 3 criteria tags is reported in the patch
606subject. Ideally, we would have the 3 most often. The two first criteria should
607be present before a first colon (':'). If both are present, then they should be
608delimited with a slash ('/'). The 3rd criterion (area) should appear next, also
609followed by a colon. Thus, all of the following messages are valid :
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200610
611Examples of messages :
Willy Tarreau9a639a12011-09-10 22:48:36 +0200612 - DOC: document options forwardfor to logasap
613 - DOC/MAJOR: reorganize the whole document and change indenting
614 - BUG: stats: connection reset counters must be plain ascii, not HTML
615 - BUG/MINOR: stats: connection reset counters must be plain ascii, not HTML
616 - MEDIUM: checks: support multi-packet health check responses
617 - RELEASE: Released version 1.4.2
618 - BUILD: stats: stdint is not present on solaris
619 - OPTIM/MINOR: halog: make fgets parse more bytes by blocks
620 - REORG/MEDIUM: move syscall redefinition to specific places
621
622Please do not use square brackets anymore around the tags, because they give me
623more work when merging patches. By default I'm asking Git to keep them but this
624causes trouble when patches are prefixed with the [PATCH] tag because in order
625not to store it, I have to hand-edit the patches. So as of now, I will ask Git
626to remove whatever is located between square brackets, which implies that any
627subject formatted the old way will have its tag stripped out.
628
629In fact, one of the only square bracket tags that still makes sense is '[RFC]'
630at the beginning of the subject, when you're asking for someone to review your
631change before getting it merged. If the patch is OK to be merged, then I can
632merge it as-is and the '[RFC]' tag will automatically be removed. If you don't
633want it to be merged at all, you can simply state it in the message, or use an
634alternate '[WIP]' tag ("work in progress").
635
636The tags are not rigid, follow your intuition first, anyway I reserve the right
637to change them when merging the patch. It may happen that a same patch has a
638different tag in two distinct branches. The reason is that a bug in one branch
639may just be a cleanup in the other one because the code cannot be triggered.
640
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200641
642For a more efficient interaction between the mainline code and your code, I can
643only strongly encourage you to try the Git version control system :
644
645 http://git-scm.com/
646
647It's very fast, lightweight and lets you undo/redo your work as often as you
648want, without making your mistakes visible to the rest of the world. It will
649definitely help you contribute quality code and take other people's feedback
650in consideration. In order to clone the HAProxy Git repository :
651
Willy Tarreau869f3512014-06-19 15:26:32 +0200652 $ git clone http://git.haproxy.org/git/haproxy-1.5.git (stable 1.5)
Willy Tarreau6346f0a2014-05-10 11:04:39 +0200653 $ git clone http://git.haproxy.org/git/haproxy.git/ (development)
Willy Tarreau663148c2012-12-12 00:38:22 +0100654
Willy Tarreaub1a34b62010-05-09 22:37:12 +0200655If you decide to use Git for your developments, then your commit messages will
656have the subject line in the format described above, then the whole description
657of your work (mainly why you did it) will be in the body. You can directly send
658your commits to the mailing list, the format is convenient to read and process.
659
willy tarreau78345332005-12-18 01:33:16 +0100660-- end