blob: ce9280c3137a8895fd147ee147c627085132ffcf [file] [log] [blame]
Willy Tarreaud4c33c82013-01-07 21:59:07 +01001/*
2 * General protocol-agnostic payload-based sample fetches and ACLs
3 *
4 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <stdlib.h>
14#include <string.h>
15
16#include <proto/acl.h>
17#include <proto/arg.h>
18#include <proto/channel.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010019#include <proto/pattern.h>
Willy Tarreaud4c33c82013-01-07 21:59:07 +010020#include <proto/payload.h>
21#include <proto/sample.h>
22
23
24/************************************************************************/
25/* All supported sample fetch functions must be declared here */
26/************************************************************************/
27
28/* wait for more data as long as possible, then return TRUE. This should be
29 * used with content inspection.
30 */
31static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020032smp_fetch_wait_end(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +010033{
Thierry FOURNIER0786d052015-05-11 15:42:45 +020034 if (!(smp->opt & SMP_OPT_FINAL)) {
Willy Tarreaud4c33c82013-01-07 21:59:07 +010035 smp->flags |= SMP_F_MAY_CHANGE;
36 return 0;
37 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020038 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020039 smp->data.u.sint = 1;
Willy Tarreaud4c33c82013-01-07 21:59:07 +010040 return 1;
41}
42
43/* return the number of bytes in the request buffer */
44static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +020045smp_fetch_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +010046{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010047 struct channel *chn;
48
Thierry FOURNIER0786d052015-05-11 15:42:45 +020049 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +010050 if (!chn->buf)
Willy Tarreaud4c33c82013-01-07 21:59:07 +010051 return 0;
52
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +020053 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +020054 smp->data.u.sint = chn->buf->i;
Willy Tarreaud4c33c82013-01-07 21:59:07 +010055 smp->flags = SMP_F_VOLATILE | SMP_F_MAY_CHANGE;
56 return 1;
57}
58
Pradeep Jindalbb2acf52015-09-29 10:12:57 +053059/* Returns 0 if the client didn't send a SessionTicket Extension
60 * Returns 1 if the client sent SessionTicket Extension
61 * Returns 2 if the client also sent non-zero length SessionTicket
62 * Returns SMP_T_SINT data type
63 */
64static int
65smp_fetch_req_ssl_st_ext(const struct arg *args, struct sample *smp, const char *kw, void *private)
66{
67 int hs_len, ext_len, bleft;
68 struct channel *chn;
69 unsigned char *data;
70
71 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
72 if (!chn->buf)
73 goto not_ssl_hello;
74
75 bleft = chn->buf->i;
76 data = (unsigned char *)chn->buf->p;
77
78 /* Check for SSL/TLS Handshake */
79 if (!bleft)
80 goto too_short;
81 if (*data != 0x16)
82 goto not_ssl_hello;
83
84 /* Check for SSLv3 or later (SSL version >= 3.0) in the record layer*/
85 if (bleft < 3)
86 goto too_short;
87 if (data[1] < 0x03)
88 goto not_ssl_hello;
89
90 if (bleft < 5)
91 goto too_short;
92 hs_len = (data[3] << 8) + data[4];
93 if (hs_len < 1 + 3 + 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
94 goto not_ssl_hello; /* too short to have an extension */
95
96 data += 5; /* enter TLS handshake */
97 bleft -= 5;
98
99 /* Check for a complete client hello starting at <data> */
100 if (bleft < 1)
101 goto too_short;
102 if (data[0] != 0x01) /* msg_type = Client Hello */
103 goto not_ssl_hello;
104
105 /* Check the Hello's length */
106 if (bleft < 4)
107 goto too_short;
108 hs_len = (data[1] << 16) + (data[2] << 8) + data[3];
109 if (hs_len < 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
110 goto not_ssl_hello; /* too short to have an extension */
111
112 /* We want the full handshake here */
113 if (bleft < hs_len)
114 goto too_short;
115
116 data += 4;
117 /* Start of the ClientHello message */
118 if (data[0] < 0x03 || data[1] < 0x01) /* TLSv1 minimum */
119 goto not_ssl_hello;
120
121 ext_len = data[34]; /* session_id_len */
122 if (ext_len > 32 || ext_len > (hs_len - 35)) /* check for correct session_id len */
123 goto not_ssl_hello;
124
125 /* Jump to cipher suite */
126 hs_len -= 35 + ext_len;
127 data += 35 + ext_len;
128
129 if (hs_len < 4 || /* minimum one cipher */
130 (ext_len = (data[0] << 8) + data[1]) < 2 || /* minimum 2 bytes for a cipher */
131 ext_len > hs_len)
132 goto not_ssl_hello;
133
134 /* Jump to the compression methods */
135 hs_len -= 2 + ext_len;
136 data += 2 + ext_len;
137
138 if (hs_len < 2 || /* minimum one compression method */
139 data[0] < 1 || data[0] > hs_len) /* minimum 1 bytes for a method */
140 goto not_ssl_hello;
141
142 /* Jump to the extensions */
143 hs_len -= 1 + data[0];
144 data += 1 + data[0];
145
146 if (hs_len < 2 || /* minimum one extension list length */
147 (ext_len = (data[0] << 8) + data[1]) > hs_len - 2) /* list too long */
148 goto not_ssl_hello;
149
150 hs_len = ext_len; /* limit ourselves to the extension length */
151 data += 2;
152
153 while (hs_len >= 4) {
154 int ext_type, ext_len;
155
156 ext_type = (data[0] << 8) + data[1];
157 ext_len = (data[2] << 8) + data[3];
158
159 if (ext_len > hs_len - 4) /* Extension too long */
160 goto not_ssl_hello;
161
162 /* SesstionTicket extension */
163 if (ext_type == 35) {
164 smp->data.type = SMP_T_SINT;
165 /* SessionTicket also present */
166 if (ext_len > 0)
167 smp->data.u.sint = 2;
168 /* SessionTicket absent */
169 else
170 smp->data.u.sint = 1;
171 smp->flags = SMP_F_VOLATILE;
172 return 1;
173 }
174
175 hs_len -= 4 + ext_len;
176 data += 4 + ext_len;
177 }
178 /* SessionTicket Extension not found */
179 smp->data.type = SMP_T_SINT;
180 smp->data.u.sint = 0;
181 smp->flags = SMP_F_VOLATILE;
182 return 1;
183
184 /* server name not found */
185 goto not_ssl_hello;
186
187 too_short:
188 smp->flags = SMP_F_MAY_CHANGE;
189
190 not_ssl_hello:
191 return 0;
192}
193
Nenad Merdanovic5fc7d7e2015-07-07 22:00:17 +0200194/* Returns TRUE if the client sent Supported Elliptic Curves Extension (0x000a)
195 * Mainly used to detect if client supports ECC cipher suites.
196 */
197static int
198smp_fetch_req_ssl_ec_ext(const struct arg *args, struct sample *smp, const char *kw, void *private)
199{
200 int hs_len, ext_len, bleft;
201 struct channel *chn;
202 unsigned char *data;
203
204 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
205 if (!chn->buf)
206 goto not_ssl_hello;
207
208 bleft = chn->buf->i;
209 data = (unsigned char *)chn->buf->p;
210
211 /* Check for SSL/TLS Handshake */
212 if (!bleft)
213 goto too_short;
214 if (*data != 0x16)
215 goto not_ssl_hello;
216
217 /* Check for SSLv3 or later (SSL version >= 3.0) in the record layer*/
218 if (bleft < 3)
219 goto too_short;
220 if (data[1] < 0x03)
221 goto not_ssl_hello;
222
223 if (bleft < 5)
224 goto too_short;
225 hs_len = (data[3] << 8) + data[4];
226 if (hs_len < 1 + 3 + 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
227 goto not_ssl_hello; /* too short to have an extension */
228
229 data += 5; /* enter TLS handshake */
230 bleft -= 5;
231
232 /* Check for a complete client hello starting at <data> */
233 if (bleft < 1)
234 goto too_short;
235 if (data[0] != 0x01) /* msg_type = Client Hello */
236 goto not_ssl_hello;
237
238 /* Check the Hello's length */
239 if (bleft < 4)
240 goto too_short;
241 hs_len = (data[1] << 16) + (data[2] << 8) + data[3];
242 if (hs_len < 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
243 goto not_ssl_hello; /* too short to have an extension */
244
245 /* We want the full handshake here */
246 if (bleft < hs_len)
247 goto too_short;
248
249 data += 4;
250 /* Start of the ClientHello message */
251 if (data[0] < 0x03 || data[1] < 0x01) /* TLSv1 minimum */
252 goto not_ssl_hello;
253
254 ext_len = data[34]; /* session_id_len */
255 if (ext_len > 32 || ext_len > (hs_len - 35)) /* check for correct session_id len */
256 goto not_ssl_hello;
257
258 /* Jump to cipher suite */
259 hs_len -= 35 + ext_len;
260 data += 35 + ext_len;
261
262 if (hs_len < 4 || /* minimum one cipher */
263 (ext_len = (data[0] << 8) + data[1]) < 2 || /* minimum 2 bytes for a cipher */
264 ext_len > hs_len)
265 goto not_ssl_hello;
266
267 /* Jump to the compression methods */
268 hs_len -= 2 + ext_len;
269 data += 2 + ext_len;
270
271 if (hs_len < 2 || /* minimum one compression method */
272 data[0] < 1 || data[0] > hs_len) /* minimum 1 bytes for a method */
273 goto not_ssl_hello;
274
275 /* Jump to the extensions */
276 hs_len -= 1 + data[0];
277 data += 1 + data[0];
278
279 if (hs_len < 2 || /* minimum one extension list length */
280 (ext_len = (data[0] << 8) + data[1]) > hs_len - 2) /* list too long */
281 goto not_ssl_hello;
282
283 hs_len = ext_len; /* limit ourselves to the extension length */
284 data += 2;
285
286 while (hs_len >= 4) {
287 int ext_type, ext_len;
288
289 ext_type = (data[0] << 8) + data[1];
290 ext_len = (data[2] << 8) + data[3];
291
292 if (ext_len > hs_len - 4) /* Extension too long */
293 goto not_ssl_hello;
294
295 /* Elliptic curves extension */
296 if (ext_type == 10) {
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200297 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200298 smp->data.u.sint = 1;
Nenad Merdanovic8a39a1f2015-07-15 12:51:11 +0200299 smp->flags = SMP_F_VOLATILE;
Nenad Merdanovic5fc7d7e2015-07-07 22:00:17 +0200300 return 1;
301 }
302
303 hs_len -= 4 + ext_len;
304 data += 4 + ext_len;
305 }
306 /* server name not found */
307 goto not_ssl_hello;
308
309 too_short:
310 smp->flags = SMP_F_MAY_CHANGE;
311
312 not_ssl_hello:
313
314 return 0;
315}
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100316/* returns the type of SSL hello message (mainly used to detect an SSL hello) */
317static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200318smp_fetch_ssl_hello_type(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100319{
320 int hs_len;
321 int hs_type, bleft;
322 struct channel *chn;
323 const unsigned char *data;
324
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200325 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100326 if (!chn->buf)
Willy Tarreau83f25922014-11-26 13:24:24 +0100327 goto not_ssl_hello;
328
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100329 bleft = chn->buf->i;
330 data = (const unsigned char *)chn->buf->p;
331
332 if (!bleft)
333 goto too_short;
334
335 if ((*data >= 0x14 && *data <= 0x17) || (*data == 0xFF)) {
336 /* SSLv3 header format */
337 if (bleft < 9)
338 goto too_short;
339
340 /* ssl version 3 */
341 if ((data[1] << 16) + data[2] < 0x00030000)
342 goto not_ssl_hello;
343
344 /* ssl message len must present handshake type and len */
345 if ((data[3] << 8) + data[4] < 4)
346 goto not_ssl_hello;
347
348 /* format introduced with SSLv3 */
349
350 hs_type = (int)data[5];
351 hs_len = ( data[6] << 16 ) + ( data[7] << 8 ) + data[8];
352
353 /* not a full handshake */
354 if (bleft < (9 + hs_len))
355 goto too_short;
356
357 }
358 else {
359 goto not_ssl_hello;
360 }
361
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200362 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200363 smp->data.u.sint = hs_type;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100364 smp->flags = SMP_F_VOLATILE;
365
366 return 1;
367
368 too_short:
369 smp->flags = SMP_F_MAY_CHANGE;
370
371 not_ssl_hello:
372
373 return 0;
374}
375
376/* Return the version of the SSL protocol in the request. It supports both
377 * SSLv3 (TLSv1) header format for any message, and SSLv2 header format for
378 * the hello message. The SSLv3 format is described in RFC 2246 p49, and the
379 * SSLv2 format is described here, and completed p67 of RFC 2246 :
380 * http://wp.netscape.com/eng/security/SSL_2.html
381 *
382 * Note: this decoder only works with non-wrapping data.
383 */
384static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200385smp_fetch_req_ssl_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100386{
387 int version, bleft, msg_len;
388 const unsigned char *data;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +0200389 struct channel *req = &smp->strm->req;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100390
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +0200391 if (!req->buf)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100392 return 0;
393
394 msg_len = 0;
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +0200395 bleft = req->buf->i;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100396 if (!bleft)
397 goto too_short;
398
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +0200399 data = (const unsigned char *)req->buf->p;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100400 if ((*data >= 0x14 && *data <= 0x17) || (*data == 0xFF)) {
401 /* SSLv3 header format */
402 if (bleft < 5)
403 goto too_short;
404
405 version = (data[1] << 16) + data[2]; /* version: major, minor */
406 msg_len = (data[3] << 8) + data[4]; /* record length */
407
408 /* format introduced with SSLv3 */
409 if (version < 0x00030000)
410 goto not_ssl;
411
412 /* message length between 1 and 2^14 + 2048 */
413 if (msg_len < 1 || msg_len > ((1<<14) + 2048))
414 goto not_ssl;
415
416 bleft -= 5; data += 5;
417 } else {
418 /* SSLv2 header format, only supported for hello (msg type 1) */
419 int rlen, plen, cilen, silen, chlen;
420
421 if (*data & 0x80) {
422 if (bleft < 3)
423 goto too_short;
424 /* short header format : 15 bits for length */
425 rlen = ((data[0] & 0x7F) << 8) | data[1];
426 plen = 0;
427 bleft -= 2; data += 2;
428 } else {
429 if (bleft < 4)
430 goto too_short;
431 /* long header format : 14 bits for length + pad length */
432 rlen = ((data[0] & 0x3F) << 8) | data[1];
433 plen = data[2];
434 bleft -= 3; data += 2;
435 }
436
437 if (*data != 0x01)
438 goto not_ssl;
439 bleft--; data++;
440
441 if (bleft < 8)
442 goto too_short;
443 version = (data[0] << 16) + data[1]; /* version: major, minor */
444 cilen = (data[2] << 8) + data[3]; /* cipher len, multiple of 3 */
445 silen = (data[4] << 8) + data[5]; /* session_id_len: 0 or 16 */
446 chlen = (data[6] << 8) + data[7]; /* 16<=challenge length<=32 */
447
448 bleft -= 8; data += 8;
449 if (cilen % 3 != 0)
450 goto not_ssl;
451 if (silen && silen != 16)
452 goto not_ssl;
453 if (chlen < 16 || chlen > 32)
454 goto not_ssl;
455 if (rlen != 9 + cilen + silen + chlen)
456 goto not_ssl;
457
458 /* focus on the remaining data length */
459 msg_len = cilen + silen + chlen + plen;
460 }
461 /* We could recursively check that the buffer ends exactly on an SSL
462 * fragment boundary and that a possible next segment is still SSL,
463 * but that's a bit pointless. However, we could still check that
464 * all the part of the request which fits in a buffer is already
465 * there.
466 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +0200467 if (msg_len > channel_recv_limit(req) + req->buf->data - req->buf->p)
468 msg_len = channel_recv_limit(req) + req->buf->data - req->buf->p;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100469
470 if (bleft < msg_len)
471 goto too_short;
472
473 /* OK that's enough. We have at least the whole message, and we have
474 * the protocol version.
475 */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200476 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200477 smp->data.u.sint = version;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100478 smp->flags = SMP_F_VOLATILE;
479 return 1;
480
481 too_short:
482 smp->flags = SMP_F_MAY_CHANGE;
483 not_ssl:
484 return 0;
485}
486
487/* Try to extract the Server Name Indication that may be presented in a TLS
488 * client hello handshake message. The format of the message is the following
489 * (cf RFC5246 + RFC6066) :
490 * TLS frame :
491 * - uint8 type = 0x16 (Handshake)
492 * - uint16 version >= 0x0301 (TLSv1)
493 * - uint16 length (frame length)
494 * - TLS handshake :
495 * - uint8 msg_type = 0x01 (ClientHello)
496 * - uint24 length (handshake message length)
497 * - ClientHello :
498 * - uint16 client_version >= 0x0301 (TLSv1)
499 * - uint8 Random[32] (4 first ones are timestamp)
500 * - SessionID :
501 * - uint8 session_id_len (0..32) (SessionID len in bytes)
502 * - uint8 session_id[session_id_len]
503 * - CipherSuite :
504 * - uint16 cipher_len >= 2 (Cipher length in bytes)
505 * - uint16 ciphers[cipher_len/2]
506 * - CompressionMethod :
507 * - uint8 compression_len >= 1 (# of supported methods)
508 * - uint8 compression_methods[compression_len]
509 * - optional client_extension_len (in bytes)
510 * - optional sequence of ClientHelloExtensions (as many bytes as above):
511 * - uint16 extension_type = 0 for server_name
512 * - uint16 extension_len
513 * - opaque extension_data[extension_len]
514 * - uint16 server_name_list_len (# of bytes here)
515 * - opaque server_names[server_name_list_len bytes]
516 * - uint8 name_type = 0 for host_name
517 * - uint16 name_len
518 * - opaque hostname[name_len bytes]
519 */
520static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200521smp_fetch_ssl_hello_sni(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100522{
523 int hs_len, ext_len, bleft;
524 struct channel *chn;
525 unsigned char *data;
526
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200527 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100528 if (!chn->buf)
Willy Tarreau83f25922014-11-26 13:24:24 +0100529 goto not_ssl_hello;
530
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100531 bleft = chn->buf->i;
532 data = (unsigned char *)chn->buf->p;
533
534 /* Check for SSL/TLS Handshake */
535 if (!bleft)
536 goto too_short;
537 if (*data != 0x16)
538 goto not_ssl_hello;
539
Lukas Tribus57d22972014-04-10 21:36:22 +0200540 /* Check for SSLv3 or later (SSL version >= 3.0) in the record layer*/
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100541 if (bleft < 3)
542 goto too_short;
Lukas Tribus57d22972014-04-10 21:36:22 +0200543 if (data[1] < 0x03)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100544 goto not_ssl_hello;
545
546 if (bleft < 5)
547 goto too_short;
548 hs_len = (data[3] << 8) + data[4];
549 if (hs_len < 1 + 3 + 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
550 goto not_ssl_hello; /* too short to have an extension */
551
552 data += 5; /* enter TLS handshake */
553 bleft -= 5;
554
555 /* Check for a complete client hello starting at <data> */
556 if (bleft < 1)
557 goto too_short;
558 if (data[0] != 0x01) /* msg_type = Client Hello */
559 goto not_ssl_hello;
560
561 /* Check the Hello's length */
562 if (bleft < 4)
563 goto too_short;
564 hs_len = (data[1] << 16) + (data[2] << 8) + data[3];
565 if (hs_len < 2 + 32 + 1 + 2 + 2 + 1 + 1 + 2 + 2)
566 goto not_ssl_hello; /* too short to have an extension */
567
568 /* We want the full handshake here */
569 if (bleft < hs_len)
570 goto too_short;
571
572 data += 4;
573 /* Start of the ClientHello message */
574 if (data[0] < 0x03 || data[1] < 0x01) /* TLSv1 minimum */
575 goto not_ssl_hello;
576
577 ext_len = data[34]; /* session_id_len */
578 if (ext_len > 32 || ext_len > (hs_len - 35)) /* check for correct session_id len */
579 goto not_ssl_hello;
580
581 /* Jump to cipher suite */
582 hs_len -= 35 + ext_len;
583 data += 35 + ext_len;
584
585 if (hs_len < 4 || /* minimum one cipher */
586 (ext_len = (data[0] << 8) + data[1]) < 2 || /* minimum 2 bytes for a cipher */
587 ext_len > hs_len)
588 goto not_ssl_hello;
589
590 /* Jump to the compression methods */
591 hs_len -= 2 + ext_len;
592 data += 2 + ext_len;
593
594 if (hs_len < 2 || /* minimum one compression method */
595 data[0] < 1 || data[0] > hs_len) /* minimum 1 bytes for a method */
596 goto not_ssl_hello;
597
598 /* Jump to the extensions */
599 hs_len -= 1 + data[0];
600 data += 1 + data[0];
601
602 if (hs_len < 2 || /* minimum one extension list length */
603 (ext_len = (data[0] << 8) + data[1]) > hs_len - 2) /* list too long */
604 goto not_ssl_hello;
605
606 hs_len = ext_len; /* limit ourselves to the extension length */
607 data += 2;
608
609 while (hs_len >= 4) {
610 int ext_type, name_type, srv_len, name_len;
611
612 ext_type = (data[0] << 8) + data[1];
613 ext_len = (data[2] << 8) + data[3];
614
615 if (ext_len > hs_len - 4) /* Extension too long */
616 goto not_ssl_hello;
617
618 if (ext_type == 0) { /* Server name */
619 if (ext_len < 2) /* need one list length */
620 goto not_ssl_hello;
621
622 srv_len = (data[4] << 8) + data[5];
623 if (srv_len < 4 || srv_len > hs_len - 6)
624 goto not_ssl_hello; /* at least 4 bytes per server name */
625
626 name_type = data[6];
627 name_len = (data[7] << 8) + data[8];
628
629 if (name_type == 0) { /* hostname */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200630 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200631 smp->data.u.str.str = (char *)data + 9;
632 smp->data.u.str.len = name_len;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100633 smp->flags = SMP_F_VOLATILE | SMP_F_CONST;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100634 return 1;
635 }
636 }
637
638 hs_len -= 4 + ext_len;
639 data += 4 + ext_len;
640 }
641 /* server name not found */
642 goto not_ssl_hello;
643
644 too_short:
645 smp->flags = SMP_F_MAY_CHANGE;
646
647 not_ssl_hello:
648
649 return 0;
650}
651
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200652/* Fetch the request RDP cookie identified in <cname>:<clen>, or any cookie if
Willy Tarreaub169eba2013-12-16 15:14:43 +0100653 * <clen> is empty (cname is then ignored). It returns the data into sample <smp>
654 * of type SMP_T_CSTR. Note: this decoder only works with non-wrapping data.
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100655 */
656int
Willy Tarreau87b09662015-04-03 00:22:06 +0200657fetch_rdp_cookie_name(struct stream *s, struct sample *smp, const char *cname, int clen)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100658{
659 int bleft;
660 const unsigned char *data;
661
Willy Tarreau53c9b4d2015-04-03 21:38:18 +0200662 if (!s->req.buf)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100663 return 0;
664
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100665 smp->flags = SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200666 smp->data.type = SMP_T_STR;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100667
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100668 bleft = s->req.buf->i;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100669 if (bleft <= 11)
670 goto too_short;
671
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100672 data = (const unsigned char *)s->req.buf->p + 11;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100673 bleft -= 11;
674
675 if (bleft <= 7)
676 goto too_short;
677
678 if (strncasecmp((const char *)data, "Cookie:", 7) != 0)
679 goto not_cookie;
680
681 data += 7;
682 bleft -= 7;
683
684 while (bleft > 0 && *data == ' ') {
685 data++;
686 bleft--;
687 }
688
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200689 if (clen) {
690 if (bleft <= clen)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100691 goto too_short;
692
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200693 if ((data[clen] != '=') ||
694 strncasecmp(cname, (const char *)data, clen) != 0)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100695 goto not_cookie;
696
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200697 data += clen + 1;
698 bleft -= clen + 1;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100699 } else {
700 while (bleft > 0 && *data != '=') {
701 if (*data == '\r' || *data == '\n')
702 goto not_cookie;
703 data++;
704 bleft--;
705 }
706
707 if (bleft < 1)
708 goto too_short;
709
710 if (*data != '=')
711 goto not_cookie;
712
713 data++;
714 bleft--;
715 }
716
717 /* data points to cookie value */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200718 smp->data.u.str.str = (char *)data;
719 smp->data.u.str.len = 0;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100720
721 while (bleft > 0 && *data != '\r') {
722 data++;
723 bleft--;
724 }
725
726 if (bleft < 2)
727 goto too_short;
728
729 if (data[0] != '\r' || data[1] != '\n')
730 goto not_cookie;
731
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200732 smp->data.u.str.len = (char *)data - smp->data.u.str.str;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100733 smp->flags = SMP_F_VOLATILE | SMP_F_CONST;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100734 return 1;
735
736 too_short:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100737 smp->flags = SMP_F_MAY_CHANGE | SMP_F_CONST;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100738 not_cookie:
739 return 0;
740}
741
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200742/* Fetch the request RDP cookie identified in the args, or any cookie if no arg
743 * is passed. It is usable both for ACL and for samples. Note: this decoder
744 * only works with non-wrapping data. Accepts either 0 or 1 argument. Argument
Willy Tarreaub169eba2013-12-16 15:14:43 +0100745 * is a string (cookie name), other types will lead to undefined behaviour. The
746 * returned sample has type SMP_T_CSTR.
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200747 */
748int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200749smp_fetch_rdp_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200750{
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +0200751 return fetch_rdp_cookie_name(smp->strm, smp, args ? args->data.str.str : NULL, args ? args->data.str.len : 0);
Willy Tarreaucadd8c92013-07-22 18:09:52 +0200752}
753
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100754/* returns either 1 or 0 depending on whether an RDP cookie is found or not */
755static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200756smp_fetch_rdp_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100757{
758 int ret;
759
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200760 ret = smp_fetch_rdp_cookie(args, smp, kw, private);
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100761
762 if (smp->flags & SMP_F_MAY_CHANGE)
763 return 0;
764
765 smp->flags = SMP_F_VOLATILE;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200766 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200767 smp->data.u.sint = ret;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100768 return 1;
769}
770
771/* extracts part of a payload with offset and length at a given position */
772static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200773smp_fetch_payload_lv(const struct arg *arg_p, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100774{
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200775 unsigned int len_offset = arg_p[0].data.sint;
776 unsigned int len_size = arg_p[1].data.sint;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100777 unsigned int buf_offset;
778 unsigned int buf_size = 0;
779 struct channel *chn;
780 int i;
781
782 /* Format is (len offset, len size, buf offset) or (len offset, len size) */
783 /* by default buf offset == len offset + len size */
784 /* buf offset could be absolute or relative to len offset + len size if prefixed by + or - */
785
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200786 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100787 if (!chn->buf)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100788 return 0;
789
790 if (len_offset + len_size > chn->buf->i)
791 goto too_short;
792
793 for (i = 0; i < len_size; i++) {
794 buf_size = (buf_size << 8) + ((unsigned char *)chn->buf->p)[i + len_offset];
795 }
796
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200797 /* buf offset may be implicit, absolute or relative. If the LSB
798 * is set, then the offset is relative otherwise it is absolute.
799 */
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100800 buf_offset = len_offset + len_size;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200801 if (arg_p[2].type == ARGT_SINT) {
802 if (arg_p[2].data.sint & 1)
803 buf_offset += arg_p[2].data.sint >> 1;
804 else
805 buf_offset = arg_p[2].data.sint >> 1;
806 }
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100807
Willy Tarreaud7bdcb82015-09-24 16:33:10 +0200808 if (!buf_size || buf_size > global.tune.bufsize || buf_offset + buf_size > global.tune.bufsize) {
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100809 /* will never match */
810 smp->flags = 0;
811 return 0;
812 }
813
814 if (buf_offset + buf_size > chn->buf->i)
815 goto too_short;
816
817 /* init chunk as read only */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200818 smp->data.type = SMP_T_BIN;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100819 smp->flags = SMP_F_VOLATILE | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200820 chunk_initlen(&smp->data.u.str, chn->buf->p + buf_offset, 0, buf_size);
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100821 return 1;
822
823 too_short:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100824 smp->flags = SMP_F_MAY_CHANGE | SMP_F_CONST;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100825 return 0;
826}
827
828/* extracts some payload at a fixed position and length */
829static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200830smp_fetch_payload(const struct arg *arg_p, struct sample *smp, const char *kw, void *private)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100831{
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200832 unsigned int buf_offset = arg_p[0].data.sint;
833 unsigned int buf_size = arg_p[1].data.sint;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100834 struct channel *chn;
835
Thierry FOURNIER0786d052015-05-11 15:42:45 +0200836 chn = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) ? &smp->strm->res : &smp->strm->req;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100837 if (!chn->buf)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100838 return 0;
839
Willy Tarreaud7bdcb82015-09-24 16:33:10 +0200840 if (!buf_size || buf_size > global.tune.bufsize || buf_offset + buf_size > global.tune.bufsize) {
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100841 /* will never match */
842 smp->flags = 0;
843 return 0;
844 }
845
846 if (buf_offset + buf_size > chn->buf->i)
847 goto too_short;
848
849 /* init chunk as read only */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200850 smp->data.type = SMP_T_BIN;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100851 smp->flags = SMP_F_VOLATILE | SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200852 chunk_initlen(&smp->data.u.str, chn->buf->p + buf_offset, 0, buf_size ? buf_size : (chn->buf->i - buf_offset));
Willy Tarreau3889fff2015-01-13 20:20:10 +0100853 if (!buf_size && channel_may_recv(chn) && !channel_input_closed(chn))
Willy Tarreau00f00842013-08-02 11:07:32 +0200854 smp->flags |= SMP_F_MAY_CHANGE;
855
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100856 return 1;
857
858 too_short:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100859 smp->flags = SMP_F_MAY_CHANGE | SMP_F_CONST;
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100860 return 0;
861}
862
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100863/* This function is used to validate the arguments passed to a "payload_lv" fetch
864 * keyword. This keyword allows two positive integers and an optional signed one,
865 * with the second one being strictly positive and the third one being greater than
866 * the opposite of the two others if negative. It is assumed that the types are
867 * already the correct ones. Returns 0 on error, non-zero if OK. If <err_msg> is
868 * not NULL, it will be filled with a pointer to an error message in case of
869 * error, that the caller is responsible for freeing. The initial location must
870 * either be freeable or NULL.
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200871 *
872 * Note that offset2 is stored with SINT type, but its not directly usable as is.
873 * The value is contained in the 63 MSB and the LSB is used as a flag for marking
874 * the "relative" property of the value.
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100875 */
Thierry FOURNIER49f45af2014-12-08 19:50:43 +0100876int val_payload_lv(struct arg *arg, char **err_msg)
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100877{
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200878 int relative = 0;
879 const char *str;
880
881 if (arg[0].data.sint < 0) {
882 memprintf(err_msg, "payload offset1 must be positive");
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100883 return 0;
884 }
885
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200886 if (!arg[1].data.sint) {
887 memprintf(err_msg, "payload length must be > 0");
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100888 return 0;
889 }
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200890
891 if (arg[2].type == ARGT_STR && arg[2].data.str.len > 0) {
892 if (arg[2].data.str.str[0] == '+' || arg[2].data.str.str[0] == '-')
893 relative = 1;
894 str = arg[2].data.str.str;
895 arg[2].type = ARGT_SINT;
896 arg[2].data.sint = read_int64(&str, str + arg[2].data.str.len);
897 if (*str != '\0') {
898 memprintf(err_msg, "payload offset2 is not a number");
899 return 0;
900 }
901 if (arg[0].data.sint + arg[1].data.sint + arg[2].data.sint < 0) {
902 memprintf(err_msg, "payload offset2 too negative");
903 return 0;
904 }
905 if (relative)
906 arg[2].data.sint = ( arg[2].data.sint << 1 ) + 1;
907 }
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100908 return 1;
909}
910
911/************************************************************************/
912/* All supported sample and ACL keywords must be declared here. */
913/************************************************************************/
914
915/* Note: must not be declared <const> as its list will be overwritten.
916 * Note: fetches that may return multiple types must be declared as the lowest
917 * common denominator, the type that can be casted into all other ones. For
918 * instance IPv4/IPv6 must be declared IPv4.
919 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200920static struct sample_fetch_kw_list smp_kws = {ILH, {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200921 { "payload", smp_fetch_payload, ARG2(2,SINT,SINT), NULL, SMP_T_BIN, SMP_USE_L6REQ|SMP_USE_L6RES },
922 { "payload_lv", smp_fetch_payload_lv, ARG3(2,SINT,SINT,STR), val_payload_lv, SMP_T_BIN, SMP_USE_L6REQ|SMP_USE_L6RES },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100923 { "rdp_cookie", smp_fetch_rdp_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_L6REQ },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200924 { "rdp_cookie_cnt", smp_fetch_rdp_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L6REQ },
925 { "rep_ssl_hello_type", smp_fetch_ssl_hello_type, 0, NULL, SMP_T_SINT, SMP_USE_L6RES },
926 { "req_len", smp_fetch_len, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
927 { "req_ssl_hello_type", smp_fetch_ssl_hello_type, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100928 { "req_ssl_sni", smp_fetch_ssl_hello_sni, 0, NULL, SMP_T_STR, SMP_USE_L6REQ },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200929 { "req_ssl_ver", smp_fetch_req_ssl_ver, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
Willy Tarreaufa957342013-01-14 16:07:52 +0100930
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200931 { "req.len", smp_fetch_len, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200932 { "req.payload", smp_fetch_payload, ARG2(2,SINT,SINT), NULL, SMP_T_BIN, SMP_USE_L6REQ },
933 { "req.payload_lv", smp_fetch_payload_lv, ARG3(2,SINT,SINT,STR), val_payload_lv, SMP_T_BIN, SMP_USE_L6REQ },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100934 { "req.rdp_cookie", smp_fetch_rdp_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_L6REQ },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200935 { "req.rdp_cookie_cnt", smp_fetch_rdp_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_L6REQ },
Nenad Merdanovic5fc7d7e2015-07-07 22:00:17 +0200936 { "req.ssl_ec_ext", smp_fetch_req_ssl_ec_ext, 0, NULL, SMP_T_BOOL, SMP_USE_L6REQ },
Pradeep Jindalbb2acf52015-09-29 10:12:57 +0530937 { "req.ssl_st_ext", smp_fetch_req_ssl_st_ext, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200938 { "req.ssl_hello_type", smp_fetch_ssl_hello_type, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100939 { "req.ssl_sni", smp_fetch_ssl_hello_sni, 0, NULL, SMP_T_STR, SMP_USE_L6REQ },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200940 { "req.ssl_ver", smp_fetch_req_ssl_ver, 0, NULL, SMP_T_SINT, SMP_USE_L6REQ },
941 { "res.len", smp_fetch_len, 0, NULL, SMP_T_SINT, SMP_USE_L6RES },
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200942 { "res.payload", smp_fetch_payload, ARG2(2,SINT,SINT), NULL, SMP_T_BIN, SMP_USE_L6RES },
943 { "res.payload_lv", smp_fetch_payload_lv, ARG3(2,SINT,SINT,STR), val_payload_lv, SMP_T_BIN, SMP_USE_L6RES },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200944 { "res.ssl_hello_type", smp_fetch_ssl_hello_type, 0, NULL, SMP_T_SINT, SMP_USE_L6RES },
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100945 { "wait_end", smp_fetch_wait_end, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
946 { /* END */ },
947}};
948
949
950/* Note: must not be declared <const> as its list will be overwritten.
951 * Please take care of keeping this list alphabetically sorted.
952 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200953static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +0100954 { "payload", "req.payload", PAT_MATCH_BIN },
955 { "payload_lv", "req.payload_lv", PAT_MATCH_BIN },
956 { "req_rdp_cookie", "req.rdp_cookie", PAT_MATCH_STR },
957 { "req_rdp_cookie_cnt", "req.rdp_cookie_cnt", PAT_MATCH_INT },
958 { "req_ssl_sni", "req.ssl_sni", PAT_MATCH_STR },
959 { "req_ssl_ver", "req.ssl_ver", PAT_MATCH_INT, pat_parse_dotted_ver },
960 { "req.ssl_ver", "req.ssl_ver", PAT_MATCH_INT, pat_parse_dotted_ver },
Willy Tarreaud4c33c82013-01-07 21:59:07 +0100961 { /* END */ },
962}};
963
964
965__attribute__((constructor))
966static void __payload_init(void)
967{
968 sample_register_fetches(&smp_kws);
969 acl_register_keywords(&acl_kws);
970}
971
972/*
973 * Local variables:
974 * c-indent-level: 8
975 * c-basic-offset: 8
976 * End:
977 */