summaryrefslogtreecommitdiffstats
path: root/output/ulogd_output_JSON.c
diff options
context:
space:
mode:
authorJeremy Sowden <jeremy@azazel.net>2021-11-30 10:55:53 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2022-01-03 16:38:57 +0100
commitb2008092566ab071b234d8650f9f5397e858dbaf (patch)
treed0e30dbd71bbda635acd1bdf8a1f2b944463fe68 /output/ulogd_output_JSON.c
parent2bb3c1b74c40fdd4de709ffc469619d5e404db73 (diff)
db: improve mapping of input-keys to DB columns
Currently, we copy the key-name to a buffer, iterate over it to replace the full-stops with underscores, using `strchr` from the start of the buffer on each iteration, then append the buffer to the SQL statement. Apart from the inefficiency, `strncpy` is used to do the copies, which leads gcc to complain: ../../util/db.c:118:25: warning: `strncpy` output may be truncated copying 31 bytes from a string of length 31 Furthermore, the buffer is one character too short and so there is the possibility of overruns. Instead, append the key-name directly to the statement using `sprintf`, and run `strchr` from the last underscore on each iteration. Signed-off-by: Jeremy Sowden <jeremy@azazel.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'output/ulogd_output_JSON.c')
0 files changed, 0 insertions, 0 deletions