suricata
output-json-ftp.c
Go to the documentation of this file.
1 /* Copyright (C) 2017-2021 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Jeff Lucovsky <jeff@lucovsky.org>
22  *
23  * Implement JSON/eve logging app-layer FTP.
24  */
25 
26 #include "suricata-common.h"
27 #include "detect.h"
28 #include "pkt-var.h"
29 #include "conf.h"
30 
31 #include "threads.h"
32 #include "threadvars.h"
33 #include "tm-threads.h"
34 
35 #include "util-unittest.h"
36 #include "util-buffer.h"
37 #include "util-debug.h"
38 #include "util-mem.h"
39 
40 #include "output.h"
41 #include "output-json.h"
42 
43 #include "app-layer.h"
44 #include "app-layer-parser.h"
45 
46 #include "app-layer-ftp.h"
47 #include "output-json-ftp.h"
48 
49 static void EveFTPLogCommand(FTPTransaction *tx, JsonBuilder *jb)
50 {
51  /* Preallocate array objects to simplify failure case */
52  JsonBuilder *js_resplist = NULL;
53  if (!TAILQ_EMPTY(&tx->response_list)) {
54  js_resplist = jb_new_array();
55 
56  if (unlikely(js_resplist == NULL)) {
57  return;
58  }
59  }
60  jb_set_string(jb, "command", tx->command_descriptor->command_name);
61  uint32_t min_length = tx->command_descriptor->command_length + 1; /* command + space */
62  if (tx->request_length > min_length) {
63  jb_set_string_from_bytes(jb,
64  "command_data",
65  (const uint8_t *)tx->request + min_length,
66  tx->request_length - min_length - 1);
67  if (tx->request_truncated) {
68  JB_SET_TRUE(jb, "command_truncated");
69  } else {
70  JB_SET_FALSE(jb, "command_truncated");
71  }
72  }
73 
74  bool reply_truncated = false;
75 
76  if (!TAILQ_EMPTY(&tx->response_list)) {
77  int resp_cnt = 0;
78  FTPString *response;
79  bool is_cc_array_open = false;
80  TAILQ_FOREACH(response, &tx->response_list, next) {
81  /* handle multiple lines within the response, \r\n delimited */
82  uint8_t *where = response->str;
83  uint16_t length = 0;
84  uint16_t pos;
85  if (response->len > 0 && response->len <= UINT16_MAX) {
86  length = (uint16_t)response->len - 1;
87  } else if (response->len > UINT16_MAX) {
88  length = UINT16_MAX;
89  }
90  if (!reply_truncated && response->truncated) {
91  reply_truncated = true;
92  }
93  while ((pos = JsonGetNextLineFromBuffer((const char *)where, length)) != UINT16_MAX) {
94  uint16_t offset = 0;
95  /* Try to find a completion code for this line */
96  if (pos >= 3) {
97  /* Gather the completion code if present */
98  if (isdigit(where[0]) && isdigit(where[1]) && isdigit(where[2])) {
99  if (!is_cc_array_open) {
100  jb_open_array(jb, "completion_code");
101  is_cc_array_open = true;
102  }
103  jb_append_string_from_bytes(jb, (const uint8_t *)where, 3);
104  offset = 4;
105  }
106  }
107  /* move past 3 character completion code */
108  if (pos >= offset) {
109  jb_append_string_from_bytes(js_resplist, (const uint8_t *)where + offset, pos - offset);
110  resp_cnt++;
111  }
112 
113  where += pos;
114  length -= pos;
115  }
116  }
117 
118  if (is_cc_array_open) {
119  jb_close(jb);
120  }
121  if (resp_cnt) {
122  jb_close(js_resplist);
123  jb_set_object(jb, "reply", js_resplist);
124  }
125  jb_free(js_resplist);
126  }
127 
128  if (tx->dyn_port) {
129  jb_set_uint(jb, "dynamic_port", tx->dyn_port);
130  }
131 
134  if (tx->active) {
135  JB_SET_STRING(jb, "mode", "active");
136  } else {
137  JB_SET_STRING(jb, "mode", "passive");
138  }
139  }
140 
141  if (tx->done) {
142  JB_SET_STRING(jb, "reply_received", "yes");
143  } else {
144  JB_SET_STRING(jb, "reply_received", "no");
145  }
146 
147  if (reply_truncated) {
148  JB_SET_TRUE(jb, "reply_truncated");
149  } else {
150  JB_SET_FALSE(jb, "reply_truncated");
151  }
152 }
153 
154 
155 static int JsonFTPLogger(ThreadVars *tv, void *thread_data,
156  const Packet *p, Flow *f, void *state, void *vtx, uint64_t tx_id)
157 {
158  SCEnter();
159  OutputJsonThreadCtx *thread = thread_data;
160 
161  const char *event_type;
162  if (f->alproto == ALPROTO_FTPDATA) {
163  event_type = "ftp_data";
164  } else {
165  event_type = "ftp";
166  }
167  FTPTransaction *tx = vtx;
168 
169  JsonBuilder *jb =
170  CreateEveHeaderWithTxId(p, LOG_DIR_FLOW, event_type, NULL, tx_id, thread->ctx);
171  if (likely(jb)) {
172  jb_open_object(jb, event_type);
173  if (f->alproto == ALPROTO_FTPDATA) {
174  EveFTPDataAddMetadata(f, jb);
175  } else {
176  EveFTPLogCommand(tx, jb);
177  }
178 
179  if (!jb_close(jb)) {
180  goto fail;
181  }
182 
183  OutputJsonBuilderBuffer(jb, thread);
184 
185  jb_free(jb);
186  }
187  return TM_ECODE_OK;
188 
189 fail:
190  jb_free(jb);
191  return TM_ECODE_FAILED;
192 }
193 
194 static OutputInitResult OutputFTPLogInitSub(ConfNode *conf,
195  OutputCtx *parent_ctx)
196 {
199  return OutputJsonLogInitSub(conf, parent_ctx);
200 }
201 
203 {
204  /* Register as an eve sub-module. */
205  OutputRegisterTxSubModule(LOGGER_JSON_TX, "eve-log", "JsonFTPLog", "eve-log.ftp",
206  OutputFTPLogInitSub, ALPROTO_FTP, JsonFTPLogger, JsonLogThreadInit, JsonLogThreadDeinit,
207  NULL);
208  OutputRegisterTxSubModule(LOGGER_JSON_TX, "eve-log", "JsonFTPLog", "eve-log.ftp",
209  OutputFTPLogInitSub, ALPROTO_FTPDATA, JsonFTPLogger, JsonLogThreadInit,
210  JsonLogThreadDeinit, NULL);
211 
212  SCLogDebug("FTP JSON logger registered.");
213 }
FTPTransaction_::request_truncated
bool request_truncated
Definition: app-layer-ftp.h:127
FtpCommand_::command_length
const uint8_t command_length
Definition: app-layer-ftp.h:95
tm-threads.h
FTPTransaction_::command_descriptor
const FtpCommand * command_descriptor
Definition: app-layer-ftp.h:130
output-json-ftp.h
OutputJsonLogInitSub
OutputInitResult OutputJsonLogInitSub(ConfNode *conf, OutputCtx *parent_ctx)
Definition: output-json-common.c:73
FTPTransaction_::request
uint8_t * request
Definition: app-layer-ftp.h:126
offset
uint64_t offset
Definition: util-streaming-buffer.h:0
OutputJsonThreadCtx_::ctx
OutputJsonCtx * ctx
Definition: output-json.h:90
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:0
JsonLogThreadInit
TmEcode JsonLogThreadInit(ThreadVars *t, const void *initdata, void **data)
Definition: output-json-common.c:90
threads.h
Flow_
Flow data structure.
Definition: flow.h:347
FTPTransaction_::done
bool done
Definition: app-layer-ftp.h:133
OutputJsonBuilderBuffer
int OutputJsonBuilderBuffer(JsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:927
TAILQ_EMPTY
#define TAILQ_EMPTY(head)
Definition: queue.h:248
TAILQ_FOREACH
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:252
FtpCommand_::command
FtpRequestCommand command
Definition: app-layer-ftp.h:94
ALPROTO_FTP
@ ALPROTO_FTP
Definition: app-layer-protos.h:31
FtpCommand_::command_name
const char * command_name
Definition: app-layer-ftp.h:93
app-layer-ftp.h
TM_ECODE_FAILED
@ TM_ECODE_FAILED
Definition: tm-threads-common.h:85
FTPString_::len
uint32_t len
Definition: app-layer-ftp.h:113
util-unittest.h
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:84
OutputCtx_
Definition: tm-modules.h:84
OutputJsonThreadCtx_
Definition: output-json.h:89
FTPString_::truncated
bool truncated
Definition: app-layer-ftp.h:114
util-debug.h
JB_SET_STRING
#define JB_SET_STRING(jb, key, val)
Definition: rust.h:28
output-json.h
AppLayerParserRegisterLogger
void AppLayerParserRegisterLogger(uint8_t ipproto, AppProto alproto)
Definition: app-layer-parser.c:477
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
detect.h
ThreadVars_
Per thread variable structure.
Definition: threadvars.h:57
FTP_COMMAND_PORT
@ FTP_COMMAND_PORT
Definition: app-layer-ftp.h:65
pkt-var.h
JB_SET_TRUE
#define JB_SET_TRUE(jb, key)
Definition: rust.h:29
app-layer-parser.h
CreateEveHeaderWithTxId
JsonBuilder * CreateEveHeaderWithTxId(const Packet *p, enum OutputJsonLogDirection dir, const char *event_type, JsonAddrInfo *addr, uint64_t tx_id, OutputJsonCtx *eve_ctx)
Definition: output-json.c:872
Packet_
Definition: decode.h:430
conf.h
util-mem.h
OutputInitResult_
Definition: output.h:46
FTPTransaction_::request_length
uint32_t request_length
Definition: app-layer-ftp.h:125
suricata-common.h
ALPROTO_FTPDATA
@ ALPROTO_FTPDATA
Definition: app-layer-protos.h:47
OutputRegisterTxSubModule
void OutputRegisterTxSubModule(LoggerId id, const char *parent_name, const char *name, const char *conf_name, OutputInitSubFunc InitFunc, AppProto alproto, TxLogger TxLogFunc, ThreadInitFunc ThreadInit, ThreadDeinitFunc ThreadDeinit, ThreadExitPrintStatsFunc ThreadExitPrintStats)
Definition: output.c:411
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
JB_SET_FALSE
#define JB_SET_FALSE(jb, key)
Definition: rust.h:30
threadvars.h
LOG_DIR_FLOW
@ LOG_DIR_FLOW
Definition: output-json.h:40
LOGGER_JSON_TX
@ LOGGER_JSON_TX
Definition: suricata-common.h:462
ConfNode_
Definition: conf.h:32
util-buffer.h
JsonFTPLogRegister
void JsonFTPLogRegister(void)
Definition: output-json-ftp.c:202
EveFTPDataAddMetadata
void EveFTPDataAddMetadata(const Flow *f, JsonBuilder *jb)
Definition: app-layer-ftp.c:1408
FTPTransaction_::dyn_port
uint16_t dyn_port
Definition: app-layer-ftp.h:132
FTPTransaction_::active
bool active
Definition: app-layer-ftp.h:134
likely
#define likely(expr)
Definition: util-optimize.h:32
FTP_COMMAND_EPRT
@ FTP_COMMAND_EPRT
Definition: app-layer-ftp.h:85
FTPString_
Definition: app-layer-ftp.h:111
JsonLogThreadDeinit
TmEcode JsonLogThreadDeinit(ThreadVars *t, void *data)
Definition: output-json-common.c:123
JsonGetNextLineFromBuffer
uint16_t JsonGetNextLineFromBuffer(const char *buffer, const uint16_t len)
Definition: app-layer-ftp.c:1398
FTPTransaction_
Definition: app-layer-ftp.h:118
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:446
FTPString_::str
uint8_t * str
Definition: app-layer-ftp.h:112
output.h
app-layer.h