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 bool EveFTPLogCommand(void *vtx, JsonBuilder *jb)
50 {
51  FTPTransaction *tx = vtx;
52  /* Preallocate array objects to simplify failure case */
53  JsonBuilder *js_resplist = NULL;
54  if (!TAILQ_EMPTY(&tx->response_list)) {
55  js_resplist = jb_new_array();
56 
57  if (unlikely(js_resplist == NULL)) {
58  return false;
59  }
60  }
61  jb_open_object(jb, "ftp");
62  jb_set_string(jb, "command", tx->command_descriptor->command_name);
63  uint32_t min_length = tx->command_descriptor->command_length + 1; /* command + space */
64  if (tx->request_length > min_length) {
65  jb_set_string_from_bytes(jb,
66  "command_data",
67  (const uint8_t *)tx->request + min_length,
68  tx->request_length - min_length - 1);
69  if (tx->request_truncated) {
70  JB_SET_TRUE(jb, "command_truncated");
71  } else {
72  JB_SET_FALSE(jb, "command_truncated");
73  }
74  }
75 
76  bool reply_truncated = false;
77 
78  if (!TAILQ_EMPTY(&tx->response_list)) {
79  int resp_cnt = 0;
80  FTPString *response;
81  bool is_cc_array_open = false;
82  TAILQ_FOREACH(response, &tx->response_list, next) {
83  /* handle multiple lines within the response, \r\n delimited */
84  uint8_t *where = response->str;
85  uint16_t length = 0;
86  uint16_t pos;
87  if (response->len > 0 && response->len <= UINT16_MAX) {
88  length = (uint16_t)response->len - 1;
89  } else if (response->len > UINT16_MAX) {
90  length = UINT16_MAX;
91  }
92  if (!reply_truncated && response->truncated) {
93  reply_truncated = true;
94  }
95  while ((pos = JsonGetNextLineFromBuffer((const char *)where, length)) != UINT16_MAX) {
96  uint16_t offset = 0;
97  /* Try to find a completion code for this line */
98  if (pos >= 3) {
99  /* Gather the completion code if present */
100  if (isdigit(where[0]) && isdigit(where[1]) && isdigit(where[2])) {
101  if (!is_cc_array_open) {
102  jb_open_array(jb, "completion_code");
103  is_cc_array_open = true;
104  }
105  jb_append_string_from_bytes(jb, (const uint8_t *)where, 3);
106  offset = 4;
107  }
108  }
109  /* move past 3 character completion code */
110  if (pos >= offset) {
111  jb_append_string_from_bytes(js_resplist, (const uint8_t *)where + offset, pos - offset);
112  resp_cnt++;
113  }
114 
115  where += pos;
116  length -= pos;
117  }
118  }
119 
120  if (is_cc_array_open) {
121  jb_close(jb);
122  }
123  if (resp_cnt) {
124  jb_close(js_resplist);
125  jb_set_object(jb, "reply", js_resplist);
126  }
127  jb_free(js_resplist);
128  }
129 
130  if (tx->dyn_port) {
131  jb_set_uint(jb, "dynamic_port", tx->dyn_port);
132  }
133 
136  if (tx->active) {
137  JB_SET_STRING(jb, "mode", "active");
138  } else {
139  JB_SET_STRING(jb, "mode", "passive");
140  }
141  }
142 
143  if (tx->done) {
144  JB_SET_STRING(jb, "reply_received", "yes");
145  } else {
146  JB_SET_STRING(jb, "reply_received", "no");
147  }
148 
149  if (reply_truncated) {
150  JB_SET_TRUE(jb, "reply_truncated");
151  } else {
152  JB_SET_FALSE(jb, "reply_truncated");
153  }
154  jb_close(jb);
155  return true;
156 }
157 
158 
159 static int JsonFTPLogger(ThreadVars *tv, void *thread_data,
160  const Packet *p, Flow *f, void *state, void *vtx, uint64_t tx_id)
161 {
162  SCEnter();
163  OutputJsonThreadCtx *thread = thread_data;
164 
165  const char *event_type;
166  if (f->alproto == ALPROTO_FTPDATA) {
167  event_type = "ftp_data";
168  } else {
169  event_type = "ftp";
170  }
171 
172  JsonBuilder *jb =
173  CreateEveHeaderWithTxId(p, LOG_DIR_FLOW, event_type, NULL, tx_id, thread->ctx);
174  if (likely(jb)) {
175  if (f->alproto == ALPROTO_FTPDATA) {
176  if (!EveFTPDataAddMetadata(vtx, jb)) {
177  goto fail;
178  }
179  } else {
180  EveFTPLogCommand(vtx, jb);
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:88
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:350
FTPTransaction_::done
bool done
Definition: app-layer-ftp.h:133
OutputJsonBuilderBuffer
int OutputJsonBuilderBuffer(JsonBuilder *js, OutputJsonThreadCtx *ctx)
Definition: output-json.c:928
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
EveFTPDataAddMetadata
bool EveFTPDataAddMetadata(void *vtx, JsonBuilder *jb)
Definition: app-layer-ftp.c:1407
TM_ECODE_OK
@ TM_ECODE_OK
Definition: tm-threads-common.h:84
OutputCtx_
Definition: tm-modules.h:85
OutputJsonThreadCtx_
Definition: output-json.h:87
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:26
output-json.h
AppLayerParserRegisterLogger
void AppLayerParserRegisterLogger(uint8_t ipproto, AppProto alproto)
Definition: app-layer-parser.c:475
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:27
EveFTPLogCommand
bool EveFTPLogCommand(void *vtx, JsonBuilder *jb)
Definition: output-json-ftp.c:49
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:873
Packet_
Definition: decode.h:436
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:413
tv
ThreadVars * tv
Definition: fuzz_decodepcapfile.c:32
JB_SET_FALSE
#define JB_SET_FALSE(jb, key)
Definition: rust.h:28
threadvars.h
LOG_DIR_FLOW
@ LOG_DIR_FLOW
Definition: output-json.h:38
LOGGER_JSON_TX
@ LOGGER_JSON_TX
Definition: suricata-common.h:467
ConfNode_
Definition: conf.h:32
util-buffer.h
JsonFTPLogRegister
void JsonFTPLogRegister(void)
Definition: output-json-ftp.c:202
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:1397
FTPTransaction_
Definition: app-layer-ftp.h:118
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:449
FTPString_::str
uint8_t * str
Definition: app-layer-ftp.h:112
output.h
app-layer.h