MEDIUM: lua: Don't filter exported fetches and converters
authorChristopher Faulet <cfaulet@haproxy.com>
Thu, 6 Aug 2020 08:32:28 +0000 (10:32 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Fri, 7 Aug 2020 12:27:37 +0000 (14:27 +0200)
commit05e2d7744189e52dbd1625a168d6f8888b9658b8
tree8f7f60f3a2728661cb151bff194638b17aaeef44
parentaec27ef443a8263bd1914acf449e30851feb86df
MEDIUM: lua: Don't filter exported fetches and converters

Thanks to previous commits, it is now safe to use from lua the sample fetches
and sample converters that convert arguments, especially the strings
(ARGT_STR). So now, there are all exported to the lua. They was filtered on the
validation functions. Only fetches without validation functions or with val_hdr
or val_payload_lv functions were exported, and converters without validation
functions.

This patch depends on following commits :

  * aec27ef44 "BUG/MINOR: lua: Duplicate lua strings in sample fetches/converters arg array"
  * fdea1b631 "MINOR: hlua: Don't needlessly copy lua strings in trash during args validation"

It must be backported as far as 2.1 because the date() and http_date()
converters are no longer exported because of the filter on the validation
function, since the commit ae6f125c7 ("MINOR: sample: add us/ms support to
date/http_date)".
src/hlua.c