suricata
app-layer-ftp.c
Go to the documentation of this file.
1 /* Copyright (C) 2007-2024 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 Pablo Rincon Crespo <pablo.rincon.crespo@gmail.com>
22  * \author Eric Leblond <eric@regit.org>
23  * \author Jeff Lucovsky <jeff@lucovsky.org>
24  *
25  * App Layer Parser for FTP
26  */
27 
28 #include "suricata-common.h"
29 #include "app-layer-ftp.h"
30 #include "app-layer.h"
31 #include "app-layer-parser.h"
32 #include "app-layer-expectation.h"
33 #include "app-layer-detect-proto.h"
34 
35 #include "rust.h"
36 
37 #include "util-misc.h"
38 #include "util-mpm.h"
39 #include "util-validate.h"
40 
41 typedef struct FTPThreadCtx_ {
45 
46 #define FTP_MPM mpm_default_matcher
47 
48 static MpmCtx *ftp_mpm_ctx = NULL;
49 
50 // clang-format off
52  /* Parsed and handled */
53  { "PORT", FTP_COMMAND_PORT, 4 },
54  { "EPRT", FTP_COMMAND_EPRT, 4 },
55  { "AUTH TLS", FTP_COMMAND_AUTH_TLS, 8 },
56  { "PASV", FTP_COMMAND_PASV, 4 },
57  { "RETR", FTP_COMMAND_RETR, 4 },
58  { "EPSV", FTP_COMMAND_EPSV, 4 },
59  { "STOR", FTP_COMMAND_STOR, 4 },
60 
61  /* Parsed, but not handled */
62  { "ABOR", FTP_COMMAND_ABOR, 4 },
63  { "ACCT", FTP_COMMAND_ACCT, 4 },
64  { "ALLO", FTP_COMMAND_ALLO, 4 },
65  { "APPE", FTP_COMMAND_APPE, 4 },
66  { "CDUP", FTP_COMMAND_CDUP, 4 },
67  { "CHMOD", FTP_COMMAND_CHMOD, 5 },
68  { "CWD", FTP_COMMAND_CWD, 3 },
69  { "DELE", FTP_COMMAND_DELE, 4 },
70  { "HELP", FTP_COMMAND_HELP, 4 },
71  { "IDLE", FTP_COMMAND_IDLE, 4 },
72  { "LIST", FTP_COMMAND_LIST, 4 },
73  { "MAIL", FTP_COMMAND_MAIL, 4 },
74  { "MDTM", FTP_COMMAND_MDTM, 4 },
75  { "MKD", FTP_COMMAND_MKD, 3 },
76  { "MLFL", FTP_COMMAND_MLFL, 4 },
77  { "MODE", FTP_COMMAND_MODE, 4 },
78  { "MRCP", FTP_COMMAND_MRCP, 4 },
79  { "MRSQ", FTP_COMMAND_MRSQ, 4 },
80  { "MSAM", FTP_COMMAND_MSAM, 4 },
81  { "MSND", FTP_COMMAND_MSND, 4 },
82  { "MSOM", FTP_COMMAND_MSOM, 4 },
83  { "NLST", FTP_COMMAND_NLST, 4 },
84  { "NOOP", FTP_COMMAND_NOOP, 4 },
85  { "PASS", FTP_COMMAND_PASS, 4 },
86  { "PWD", FTP_COMMAND_PWD, 3 },
87  { "QUIT", FTP_COMMAND_QUIT, 4 },
88  { "REIN", FTP_COMMAND_REIN, 4 },
89  { "REST", FTP_COMMAND_REST, 4 },
90  { "RMD", FTP_COMMAND_RMD, 3 },
91  { "RNFR", FTP_COMMAND_RNFR, 4 },
92  { "RNTO", FTP_COMMAND_RNTO, 4 },
93  { "SITE", FTP_COMMAND_SITE, 4 },
94  { "SIZE", FTP_COMMAND_SIZE, 4 },
95  { "SMNT", FTP_COMMAND_SMNT, 4 },
96  { "STAT", FTP_COMMAND_STAT, 4 },
97  { "STOU", FTP_COMMAND_STOU, 4 },
98  { "STRU", FTP_COMMAND_STRU, 4 },
99  { "SYST", FTP_COMMAND_SYST, 4 },
100  { "TYPE", FTP_COMMAND_TYPE, 4 },
101  { "UMASK", FTP_COMMAND_UMASK, 5 },
102  { "USER", FTP_COMMAND_USER, 4 },
103  { NULL, FTP_COMMAND_UNKNOWN, 0 }
104 };
105 // clang-format on
106 
107 uint64_t ftp_config_memcap = 0;
108 uint32_t ftp_config_maxtx = 1024;
109 uint32_t ftp_max_line_len = 4096;
110 
111 SC_ATOMIC_DECLARE(uint64_t, ftp_memuse);
112 SC_ATOMIC_DECLARE(uint64_t, ftp_memcap);
113 
114 static FTPTransaction *FTPGetOldestTx(const FtpState *, FTPTransaction *);
115 
116 static void FTPParseMemcap(void)
117 {
118  const char *conf_val;
119 
120  /** set config values for memcap, prealloc and hash_size */
121  if ((ConfGet("app-layer.protocols.ftp.memcap", &conf_val)) == 1)
122  {
123  if (ParseSizeStringU64(conf_val, &ftp_config_memcap) < 0) {
124  SCLogError("Error parsing ftp.memcap "
125  "from conf file - %s. Killing engine",
126  conf_val);
127  exit(EXIT_FAILURE);
128  }
129  SCLogInfo("FTP memcap: %"PRIu64, ftp_config_memcap);
130  } else {
131  /* default to unlimited */
132  ftp_config_memcap = 0;
133  }
134 
135  SC_ATOMIC_INIT(ftp_memuse);
136  SC_ATOMIC_INIT(ftp_memcap);
137 
138  if ((ConfGet("app-layer.protocols.ftp.max-tx", &conf_val)) == 1) {
139  if (ParseSizeStringU32(conf_val, &ftp_config_maxtx) < 0) {
140  SCLogError("Error parsing ftp.max-tx "
141  "from conf file - %s.",
142  conf_val);
143  }
144  SCLogInfo("FTP max tx: %" PRIu32, ftp_config_maxtx);
145  }
146 
147  if ((ConfGet("app-layer.protocols.ftp.max-line-length", &conf_val)) == 1) {
148  if (ParseSizeStringU32(conf_val, &ftp_max_line_len) < 0) {
149  SCLogError("Error parsing ftp.max-line-length from conf file - %s.", conf_val);
150  }
151  SCLogConfig("FTP max line length: %" PRIu32, ftp_max_line_len);
152  }
153 }
154 
155 static void FTPIncrMemuse(uint64_t size)
156 {
157  (void)SC_ATOMIC_ADD(ftp_memuse, size);
158 }
159 
160 static void FTPDecrMemuse(uint64_t size)
161 {
162  (void)SC_ATOMIC_SUB(ftp_memuse, size);
163 }
164 
166 {
167  uint64_t tmpval = SC_ATOMIC_GET(ftp_memuse);
168  return tmpval;
169 }
170 
172 {
173  uint64_t tmpval = SC_ATOMIC_GET(ftp_memcap);
174  return tmpval;
175 }
176 
177 /**
178  * \brief Check if alloc'ing "size" would mean we're over memcap
179  *
180  * \retval 1 if in bounds
181  * \retval 0 if not in bounds
182  */
183 static int FTPCheckMemcap(uint64_t size)
184 {
185  if (ftp_config_memcap == 0 || size + SC_ATOMIC_GET(ftp_memuse) <= ftp_config_memcap)
186  return 1;
187  (void) SC_ATOMIC_ADD(ftp_memcap, 1);
188  return 0;
189 }
190 
191 static void *FTPCalloc(size_t n, size_t size)
192 {
193  if (FTPCheckMemcap((uint32_t)(n * size)) == 0) {
195  return NULL;
196  }
197 
198  void *ptr = SCCalloc(n, size);
199 
200  if (unlikely(ptr == NULL)) {
202  return NULL;
203  }
204 
205  FTPIncrMemuse((uint64_t)(n * size));
206  return ptr;
207 }
208 
209 static void *FTPRealloc(void *ptr, size_t orig_size, size_t size)
210 {
211  void *rptr = NULL;
212 
213  if (FTPCheckMemcap((uint32_t)(size - orig_size)) == 0) {
215  return NULL;
216  }
217 
218  rptr = SCRealloc(ptr, size);
219  if (rptr == NULL) {
221  return NULL;
222  }
223 
224  if (size > orig_size) {
225  FTPIncrMemuse(size - orig_size);
226  } else {
227  FTPDecrMemuse(orig_size - size);
228  }
229 
230  return rptr;
231 }
232 
233 static void FTPFree(void *ptr, size_t size)
234 {
235  SCFree(ptr);
236 
237  FTPDecrMemuse((uint64_t)size);
238 }
239 
240 static FTPString *FTPStringAlloc(void)
241 {
242  return FTPCalloc(1, sizeof(FTPString));
243 }
244 
245 static void FTPStringFree(FTPString *str)
246 {
247  if (str->str) {
248  FTPFree(str->str, str->len);
249  }
250 
251  FTPFree(str, sizeof(FTPString));
252 }
253 
254 static void *FTPLocalStorageAlloc(void)
255 {
256  /* needed by the mpm */
257  FTPThreadCtx *td = SCCalloc(1, sizeof(*td));
258  if (td == NULL) {
259  exit(EXIT_FAILURE);
260  }
261 
262  td->pmq = SCCalloc(1, sizeof(*td->pmq));
263  if (td->pmq == NULL) {
264  exit(EXIT_FAILURE);
265  }
266  PmqSetup(td->pmq);
267 
268  td->ftp_mpm_thread_ctx = SCCalloc(1, sizeof(MpmThreadCtx));
269  if (unlikely(td->ftp_mpm_thread_ctx == NULL)) {
270  exit(EXIT_FAILURE);
271  }
273  return td;
274 }
275 
276 static void FTPLocalStorageFree(void *ptr)
277 {
278  FTPThreadCtx *td = ptr;
279  if (td != NULL) {
280  if (td->pmq != NULL) {
281  PmqFree(td->pmq);
282  SCFree(td->pmq);
283  }
284 
285  if (td->ftp_mpm_thread_ctx != NULL) {
288  }
289 
290  SCFree(td);
291  }
292 }
293 static FTPTransaction *FTPTransactionCreate(FtpState *state)
294 {
295  SCEnter();
296  FTPTransaction *firsttx = TAILQ_FIRST(&state->tx_list);
297  if (firsttx && state->tx_cnt - firsttx->tx_id > ftp_config_maxtx) {
298  // FTP does not set events yet...
299  return NULL;
300  }
301  FTPTransaction *tx = FTPCalloc(1, sizeof(*tx));
302  if (tx == NULL) {
303  return NULL;
304  }
305 
306  TAILQ_INSERT_TAIL(&state->tx_list, tx, next);
307  tx->tx_id = state->tx_cnt++;
308 
309  TAILQ_INIT(&tx->response_list);
310 
311  SCLogDebug("new transaction %p (state tx cnt %"PRIu64")", tx, state->tx_cnt);
312  return tx;
313 }
314 
315 static void FTPTransactionFree(FTPTransaction *tx)
316 {
317  SCEnter();
318 
319  if (tx->tx_data.de_state != NULL) {
320  DetectEngineStateFree(tx->tx_data.de_state);
321  }
322 
323  if (tx->request) {
324  FTPFree(tx->request, tx->request_length);
325  }
326 
327  FTPString *str = NULL;
328  while ((str = TAILQ_FIRST(&tx->response_list))) {
329  TAILQ_REMOVE(&tx->response_list, str, next);
330  FTPStringFree(str);
331  }
332 
333  if (tx->tx_data.events) {
335  }
336 
337  FTPFree(tx, sizeof(*tx));
338 }
339 
340 typedef struct FtpInput_ {
341  const uint8_t *buf;
342  int32_t consumed;
343  int32_t len;
344  int32_t orig_len;
346 
347 static AppLayerResult FTPGetLineForDirection(
348  FtpLineState *line, FtpInput *input, bool *current_line_truncated)
349 {
350  SCEnter();
351 
352  /* we have run out of input */
353  if (input->len <= 0)
354  return APP_LAYER_ERROR;
355 
356  uint8_t *lf_idx = memchr(input->buf + input->consumed, 0x0a, input->len);
357 
358  if (lf_idx == NULL) {
359  if (!(*current_line_truncated) && (uint32_t)input->len >= ftp_max_line_len) {
360  *current_line_truncated = true;
361  line->buf = input->buf;
362  line->len = ftp_max_line_len;
363  line->delim_len = 0;
364  input->len = 0;
366  }
367  SCReturnStruct(APP_LAYER_INCOMPLETE(input->consumed, input->len + 1));
368  } else if (*current_line_truncated) {
369  // Whatever came in with first LF should also get discarded
370  *current_line_truncated = false;
371  line->len = 0;
372  line->delim_len = 0;
373  input->len = 0;
375  } else {
376  // There could be one chunk of command data that has LF but post the line limit
377  // e.g. input_len = 5077
378  // lf_idx = 5010
379  // max_line_len = 4096
380  uint32_t o_consumed = input->consumed;
381  input->consumed = (uint32_t)(lf_idx - input->buf + 1);
382  line->len = input->consumed - o_consumed;
383  input->len -= line->len;
384  line->lf_found = true;
385  DEBUG_VALIDATE_BUG_ON((input->consumed + input->len) != input->orig_len);
386  line->buf = input->buf + o_consumed;
387  if (line->len >= ftp_max_line_len) {
388  *current_line_truncated = true;
389  line->len = ftp_max_line_len;
391  }
392  if (input->consumed >= 2 && input->buf[input->consumed - 2] == 0x0D) {
393  line->delim_len = 2;
394  line->len -= 2;
395  } else {
396  line->delim_len = 1;
397  line->len -= 1;
398  }
400  }
401 }
402 
403 /**
404  * \brief This function is called to determine and set which command is being
405  * transferred to the ftp server
406  * \param thread context
407  * \param input input line of the command
408  * \param len of the command
409  * \param cmd_descriptor when the command has been parsed
410  *
411  * \retval 1 when the command is parsed, 0 otherwise
412  */
413 static int FTPParseRequestCommand(
414  FTPThreadCtx *td, FtpLineState *line, const FtpCommand **cmd_descriptor)
415 {
416  SCEnter();
417 
418  /* I don't like this pmq reset here. We'll devise a method later, that
419  * should make the use of the mpm very efficient */
420  PmqReset(td->pmq);
421  int mpm_cnt = mpm_table[FTP_MPM].Search(
422  ftp_mpm_ctx, td->ftp_mpm_thread_ctx, td->pmq, line->buf, line->len);
423  if (mpm_cnt) {
424  *cmd_descriptor = &FtpCommands[td->pmq->rule_id_array[0]];
425  SCReturnInt(1);
426  }
427 
428  *cmd_descriptor = NULL;
429  SCReturnInt(0);
430 }
431 
433  /** Need to look like a ExpectationData so DFree must
434  * be first field . */
435  void (*DFree)(void *);
436  uint64_t flow_id;
437  uint8_t *file_name;
438  uint16_t file_len;
439  uint8_t direction; /**< direction in which the data will flow */
441 };
442 
443 static void FtpTransferCmdFree(void *data)
444 {
445  struct FtpTransferCmd *cmd = (struct FtpTransferCmd *) data;
446  if (cmd == NULL)
447  return;
448  if (cmd->file_name) {
449  FTPFree(cmd->file_name, cmd->file_len + 1);
450  }
451  FTPFree(cmd, sizeof(struct FtpTransferCmd));
452 }
453 
454 static uint32_t CopyCommandLine(uint8_t **dest, FtpLineState *line)
455 {
456  if (likely(line->len)) {
457  uint8_t *where = FTPCalloc(line->len + 1, sizeof(char));
458  if (unlikely(where == NULL)) {
459  return 0;
460  }
461  memcpy(where, line->buf, line->len);
462 
463  /* Remove trailing newlines/carriage returns */
464  while (line->len && isspace((unsigned char)where[line->len - 1])) {
465  line->len--;
466  }
467 
468  where[line->len] = '\0';
469  *dest = where;
470  }
471  /* either 0 or actual */
472  return line->len ? line->len + 1 : 0;
473 }
474 
475 #include "util-print.h"
476 
477 /**
478  * \brief This function is called to retrieve a ftp request
479  * \param ftp_state the ftp state structure for the parser
480  *
481  * \retval APP_LAYER_OK when input was process successfully
482  * \retval APP_LAYER_ERROR when a unrecoverable error was encountered
483  */
484 static AppLayerResult FTPParseRequest(Flow *f, void *ftp_state, AppLayerParserState *pstate,
485  StreamSlice stream_slice, void *local_data)
486 {
487  FTPThreadCtx *thread_data = local_data;
488 
489  SCEnter();
490  /* PrintRawDataFp(stdout, input,input_len); */
491 
492  FtpState *state = (FtpState *)ftp_state;
493  void *ptmp;
494 
495  const uint8_t *input = StreamSliceGetData(&stream_slice);
496  uint32_t input_len = StreamSliceGetDataLen(&stream_slice);
497 
498  if (input == NULL && AppLayerParserStateIssetFlag(pstate, APP_LAYER_PARSER_EOF_TS)) {
500  } else if (input == NULL || input_len == 0) {
502  }
503 
504  FtpInput ftpi = { .buf = input, .len = input_len, .orig_len = input_len, .consumed = 0 };
505  FtpLineState line = { .buf = NULL, .len = 0, .delim_len = 0, .lf_found = false };
506 
507  uint8_t direction = STREAM_TOSERVER;
508  AppLayerResult res;
509  while (1) {
510  res = FTPGetLineForDirection(&line, &ftpi, &state->current_line_truncated_ts);
511  if (res.status == 1) {
512  return res;
513  } else if (res.status == -1) {
514  break;
515  }
516  const FtpCommand *cmd_descriptor;
517 
518  if (!FTPParseRequestCommand(thread_data, &line, &cmd_descriptor)) {
519  state->command = FTP_COMMAND_UNKNOWN;
520  continue;
521  }
522 
523  state->command = cmd_descriptor->command;
524  FTPTransaction *tx = FTPTransactionCreate(state);
525  if (unlikely(tx == NULL))
527  state->curr_tx = tx;
528 
529  tx->command_descriptor = cmd_descriptor;
530  tx->request_length = CopyCommandLine(&tx->request, &line);
532 
533  if (line.lf_found) {
534  state->current_line_truncated_ts = false;
535  }
536  if (tx->request_truncated) {
537  AppLayerDecoderEventsSetEventRaw(&tx->tx_data.events, FtpEventRequestCommandTooLong);
538  }
539 
540  /* change direction (default to server) so expectation will handle
541  * the correct message when expectation will match.
542  * For ftp active mode, data connection direction is opposite to
543  * control direction.
544  */
545  if ((state->active && state->command == FTP_COMMAND_STOR) ||
546  (!state->active && state->command == FTP_COMMAND_RETR)) {
547  direction = STREAM_TOCLIENT;
548  }
549 
550  switch (state->command) {
551  case FTP_COMMAND_EPRT:
552  // fallthrough
553  case FTP_COMMAND_PORT:
554  if (line.len + 1 > state->port_line_size) {
555  /* Allocate an extra byte for a NULL terminator */
556  ptmp = FTPRealloc(state->port_line, state->port_line_size, line.len);
557  if (ptmp == NULL) {
558  if (state->port_line) {
559  FTPFree(state->port_line, state->port_line_size);
560  state->port_line = NULL;
561  state->port_line_size = 0;
562  state->port_line_len = 0;
563  }
565  }
566  state->port_line = ptmp;
567  state->port_line_size = line.len;
568  }
569  memcpy(state->port_line, line.buf, line.len);
570  state->port_line_len = line.len;
571  break;
572  case FTP_COMMAND_RETR:
573  // fallthrough
574  case FTP_COMMAND_STOR: {
575  /* Ensure that there is a negotiated dyn port and a file
576  * name -- need more than 5 chars: cmd [4], space, <filename>
577  */
578  if (state->dyn_port == 0 || line.len < 6) {
580  }
581  struct FtpTransferCmd *data = FTPCalloc(1, sizeof(struct FtpTransferCmd));
582  if (data == NULL)
584  data->DFree = FtpTransferCmdFree;
585  /*
586  * Min size has been checked in FTPParseRequestCommand
587  * SC_FILENAME_MAX includes the null
588  */
589  uint32_t file_name_len = MIN(SC_FILENAME_MAX - 1, line.len - 5);
590 #if SC_FILENAME_MAX > UINT16_MAX
591 #error SC_FILENAME_MAX is greater than UINT16_MAX
592 #endif
593  data->file_name = FTPCalloc(file_name_len + 1, sizeof(char));
594  if (data->file_name == NULL) {
595  FtpTransferCmdFree(data);
597  }
598  data->file_name[file_name_len] = 0;
599  data->file_len = (uint16_t)file_name_len;
600  memcpy(data->file_name, line.buf + 5, file_name_len);
601  data->cmd = state->command;
602  data->flow_id = FlowGetId(f);
603  data->direction = direction;
605  0, state->dyn_port, ALPROTO_FTPDATA, data);
606  if (ret == -1) {
607  FtpTransferCmdFree(data);
608  SCLogDebug("No expectation created.");
610  } else {
611  SCLogDebug("Expectation created [direction: %s, dynamic port %"PRIu16"].",
612  state->active ? "to server" : "to client",
613  state->dyn_port);
614  }
615 
616  /* reset the dyn port to avoid duplicate */
617  state->dyn_port = 0;
618  /* reset active/passive indicator */
619  state->active = false;
620  } break;
621  default:
622  break;
623  }
624  if (line.len >= ftp_max_line_len) {
625  ftpi.consumed = ftpi.len + 1;
626  break;
627  }
628  }
629 
631 }
632 
633 static int FTPParsePassiveResponse(FtpState *state, const uint8_t *input, uint32_t input_len)
634 {
635  uint16_t dyn_port = rs_ftp_pasv_response(input, input_len);
636  if (dyn_port == 0) {
637  return -1;
638  }
639  SCLogDebug("FTP passive mode (v4): dynamic port %"PRIu16"", dyn_port);
640  state->active = false;
641  state->dyn_port = dyn_port;
642  state->curr_tx->dyn_port = dyn_port;
643  state->curr_tx->active = false;
644 
645  return 0;
646 }
647 
648 static int FTPParsePassiveResponseV6(FtpState *state, const uint8_t *input, uint32_t input_len)
649 {
650  uint16_t dyn_port = rs_ftp_epsv_response(input, input_len);
651  if (dyn_port == 0) {
652  return -1;
653  }
654  SCLogDebug("FTP passive mode (v6): dynamic port %"PRIu16"", dyn_port);
655  state->active = false;
656  state->dyn_port = dyn_port;
657  state->curr_tx->dyn_port = dyn_port;
658  state->curr_tx->active = false;
659  return 0;
660 }
661 
662 /**
663  * \brief Handle preliminary replies -- keep tx open
664  * \retval bool True for a positive preliminary reply; false otherwise
665  *
666  * 1yz Positive Preliminary reply
667  *
668  * The requested action is being initiated; expect another
669  * reply before proceeding with a new command
670  */
671 static inline bool FTPIsPPR(const uint8_t *input, uint32_t input_len)
672 {
673  return input_len >= 4 && isdigit(input[0]) && input[0] == '1' &&
674  isdigit(input[1]) && isdigit(input[2]) && isspace(input[3]);
675 }
676 
677 /**
678  * \brief This function is called to retrieve a ftp response
679  * \param ftp_state the ftp state structure for the parser
680  * \param input input line of the command
681  * \param input_len length of the request
682  * \param output the resulting output
683  *
684  * \retval 1 when the command is parsed, 0 otherwise
685  */
686 static AppLayerResult FTPParseResponse(Flow *f, void *ftp_state, AppLayerParserState *pstate,
687  StreamSlice stream_slice, void *local_data)
688 {
689  FtpState *state = (FtpState *)ftp_state;
690 
691  const uint8_t *input = StreamSliceGetData(&stream_slice);
692  uint32_t input_len = StreamSliceGetDataLen(&stream_slice);
693 
694  if (unlikely(input_len == 0)) {
696  }
697  FtpInput ftpi = { .buf = input, .len = input_len, .orig_len = input_len, .consumed = 0 };
698  FtpLineState line = { .buf = NULL, .len = 0, .delim_len = 0, .lf_found = false };
699 
700  FTPTransaction *lasttx = TAILQ_FIRST(&state->tx_list);
701  AppLayerResult res;
702  while (1) {
703  res = FTPGetLineForDirection(&line, &ftpi, &state->current_line_truncated_tc);
704  if (res.status == 1) {
705  return res;
706  } else if (res.status == -1) {
707  break;
708  }
709  FTPTransaction *tx = FTPGetOldestTx(state, lasttx);
710  if (tx == NULL) {
711  tx = FTPTransactionCreate(state);
712  }
713  if (unlikely(tx == NULL)) {
715  }
716  lasttx = tx;
717  if (state->command == FTP_COMMAND_UNKNOWN || tx->command_descriptor == NULL) {
718  /* unknown */
720  }
721 
722  state->curr_tx = tx;
723  uint16_t dyn_port;
724  switch (state->command) {
726  if (line.len >= 4 && SCMemcmp("234 ", line.buf, 4) == 0) {
728  }
729  break;
730 
731  case FTP_COMMAND_EPRT:
732  dyn_port = rs_ftp_active_eprt(state->port_line, state->port_line_len);
733  if (dyn_port == 0) {
734  goto tx_complete;
735  }
736  state->dyn_port = dyn_port;
737  state->active = true;
738  tx->dyn_port = dyn_port;
739  tx->active = true;
740  SCLogDebug("FTP active mode (v6): dynamic port %" PRIu16 "", dyn_port);
741  break;
742 
743  case FTP_COMMAND_PORT:
744  dyn_port = rs_ftp_active_port(state->port_line, state->port_line_len);
745  if (dyn_port == 0) {
746  goto tx_complete;
747  }
748  state->dyn_port = dyn_port;
749  state->active = true;
750  tx->dyn_port = state->dyn_port;
751  tx->active = true;
752  SCLogDebug("FTP active mode (v4): dynamic port %" PRIu16 "", dyn_port);
753  break;
754 
755  case FTP_COMMAND_PASV:
756  if (line.len >= 4 && SCMemcmp("227 ", line.buf, 4) == 0) {
757  FTPParsePassiveResponse(ftp_state, line.buf, line.len);
758  }
759  break;
760 
761  case FTP_COMMAND_EPSV:
762  if (line.len >= 4 && SCMemcmp("229 ", line.buf, 4) == 0) {
763  FTPParsePassiveResponseV6(ftp_state, line.buf, line.len);
764  }
765  break;
766  default:
767  break;
768  }
769 
770  if (likely(line.len)) {
771  FTPString *response = FTPStringAlloc();
772  if (likely(response)) {
773  response->len = CopyCommandLine(&response->str, &line);
774  response->truncated = state->current_line_truncated_tc;
775  if (response->truncated) {
777  &tx->tx_data.events, FtpEventResponseCommandTooLong);
778  }
779  if (line.lf_found) {
780  state->current_line_truncated_tc = false;
781  }
782  TAILQ_INSERT_TAIL(&tx->response_list, response, next);
783  }
784  }
785 
786  /* Handle preliminary replies -- keep tx open */
787  if (FTPIsPPR(line.buf, line.len)) {
788  continue;
789  }
790  tx_complete:
791  tx->done = true;
792 
793  if (line.len >= ftp_max_line_len) {
794  ftpi.consumed = ftpi.len + 1;
795  break;
796  }
797  }
798 
800 }
801 
802 
803 #ifdef DEBUG
804 static SCMutex ftp_state_mem_lock = SCMUTEX_INITIALIZER;
805 static uint64_t ftp_state_memuse = 0;
806 static uint64_t ftp_state_memcnt = 0;
807 #endif
808 
809 static void *FTPStateAlloc(void *orig_state, AppProto proto_orig)
810 {
811  void *s = FTPCalloc(1, sizeof(FtpState));
812  if (unlikely(s == NULL))
813  return NULL;
814 
815  FtpState *ftp_state = (FtpState *) s;
816  TAILQ_INIT(&ftp_state->tx_list);
817 
818 #ifdef DEBUG
819  SCMutexLock(&ftp_state_mem_lock);
820  ftp_state_memcnt++;
821  ftp_state_memuse+=sizeof(FtpState);
822  SCMutexUnlock(&ftp_state_mem_lock);
823 #endif
824  return s;
825 }
826 
827 static void FTPStateFree(void *s)
828 {
829  FtpState *fstate = (FtpState *) s;
830  if (fstate->port_line != NULL)
831  FTPFree(fstate->port_line, fstate->port_line_size);
832 
833  FTPTransaction *tx = NULL;
834  while ((tx = TAILQ_FIRST(&fstate->tx_list))) {
835  TAILQ_REMOVE(&fstate->tx_list, tx, next);
836  SCLogDebug("[%s] state %p id %" PRIu64 ", Freeing %d bytes at %p",
838  tx->request);
839  FTPTransactionFree(tx);
840  }
841 
842  FTPFree(s, sizeof(FtpState));
843 #ifdef DEBUG
844  SCMutexLock(&ftp_state_mem_lock);
845  ftp_state_memcnt--;
846  ftp_state_memuse-=sizeof(FtpState);
847  SCMutexUnlock(&ftp_state_mem_lock);
848 #endif
849 }
850 
851 /**
852  * \brief This function returns the oldest open transaction; if none
853  * are open, then the oldest transaction is returned
854  * \param ftp_state the ftp state structure for the parser
855  * \param starttx the ftp transaction where to start looking
856  *
857  * \retval transaction pointer when a transaction was found; NULL otherwise.
858  */
859 static FTPTransaction *FTPGetOldestTx(const FtpState *ftp_state, FTPTransaction *starttx)
860 {
861  if (unlikely(!ftp_state)) {
862  SCLogDebug("NULL state object; no transactions available");
863  return NULL;
864  }
865  FTPTransaction *tx = starttx;
866  FTPTransaction *lasttx = NULL;
867  while(tx != NULL) {
868  /* Return oldest open tx */
869  if (!tx->done) {
870  SCLogDebug("Returning tx %p id %"PRIu64, tx, tx->tx_id);
871  return tx;
872  }
873  /* save for the end */
874  lasttx = tx;
875  tx = TAILQ_NEXT(tx, next);
876  }
877  /* All tx are closed; return last element */
878  if (lasttx)
879  SCLogDebug("Returning OLDEST tx %p id %"PRIu64, lasttx, lasttx->tx_id);
880  return lasttx;
881 }
882 
883 static void *FTPGetTx(void *state, uint64_t tx_id)
884 {
885  FtpState *ftp_state = (FtpState *)state;
886  if (ftp_state) {
887  FTPTransaction *tx = NULL;
888 
889  if (ftp_state->curr_tx == NULL)
890  return NULL;
891  if (ftp_state->curr_tx->tx_id == tx_id)
892  return ftp_state->curr_tx;
893 
894  TAILQ_FOREACH(tx, &ftp_state->tx_list, next) {
895  if (tx->tx_id == tx_id)
896  return tx;
897  }
898  }
899  return NULL;
900 }
901 
902 static AppLayerTxData *FTPGetTxData(void *vtx)
903 {
904  FTPTransaction *tx = (FTPTransaction *)vtx;
905  return &tx->tx_data;
906 }
907 
908 static AppLayerStateData *FTPGetStateData(void *vstate)
909 {
910  FtpState *s = (FtpState *)vstate;
911  return &s->state_data;
912 }
913 
914 static void FTPStateTransactionFree(void *state, uint64_t tx_id)
915 {
916  FtpState *ftp_state = state;
917  FTPTransaction *tx = NULL;
918  TAILQ_FOREACH(tx, &ftp_state->tx_list, next) {
919  if (tx_id < tx->tx_id)
920  break;
921  else if (tx_id > tx->tx_id)
922  continue;
923 
924  if (tx == ftp_state->curr_tx)
925  ftp_state->curr_tx = NULL;
926  TAILQ_REMOVE(&ftp_state->tx_list, tx, next);
927  FTPTransactionFree(tx);
928  break;
929  }
930 }
931 
932 static uint64_t FTPGetTxCnt(void *state)
933 {
934  uint64_t cnt = 0;
935  FtpState *ftp_state = state;
936  if (ftp_state) {
937  cnt = ftp_state->tx_cnt;
938  }
939  SCLogDebug("returning state %p %"PRIu64, state, cnt);
940  return cnt;
941 }
942 
943 static int FTPGetAlstateProgress(void *vtx, uint8_t direction)
944 {
945  SCLogDebug("tx %p", vtx);
946  FTPTransaction *tx = vtx;
947 
948  if (!tx->done) {
949  if (direction == STREAM_TOSERVER && tx->command_descriptor->command == FTP_COMMAND_PORT) {
950  return FTP_STATE_PORT_DONE;
951  }
952  return FTP_STATE_IN_PROGRESS;
953  }
954 
955  return FTP_STATE_FINISHED;
956 }
957 
958 static AppProto FTPUserProbingParser(
959  Flow *f, uint8_t direction, const uint8_t *input, uint32_t len, uint8_t *rdir)
960 {
961  if (f->alproto_tc == ALPROTO_POP3) {
962  // POP traffic begins by same "USER" pattern as FTP
963  return ALPROTO_FAILED;
964  }
965  return ALPROTO_FTP;
966 }
967 
968 static AppProto FTPServerProbingParser(
969  Flow *f, uint8_t direction, const uint8_t *input, uint32_t len, uint8_t *rdir)
970 {
971  // another check for minimum length
972  if (len < 5) {
973  return ALPROTO_UNKNOWN;
974  }
975  // begins by 220
976  if (input[0] != '2' || input[1] != '2' || input[2] != '0') {
977  return ALPROTO_FAILED;
978  }
979  // followed by space or hypen
980  if (input[3] != ' ' && input[3] != '-') {
981  return ALPROTO_FAILED;
982  }
983  if (f->alproto_ts == ALPROTO_FTP || (f->todstbytecnt > 4 && f->alproto_ts == ALPROTO_UNKNOWN)) {
984  // only validates FTP if client side was FTP
985  // or if client side is unknown despite having received bytes
986  if (memchr(input + 4, '\n', len - 4) != NULL) {
987  return ALPROTO_FTP;
988  }
989  }
990  return ALPROTO_UNKNOWN;
991 }
992 
993 static int FTPRegisterPatternsForProtocolDetection(void)
994 {
996  IPPROTO_TCP, ALPROTO_FTP, "220 (", 5, 0, STREAM_TOCLIENT) < 0) {
997  return -1;
998  }
1000  IPPROTO_TCP, ALPROTO_FTP, "FEAT", 4, 0, STREAM_TOSERVER) < 0) {
1001  return -1;
1002  }
1003  if (AppLayerProtoDetectPMRegisterPatternCSwPP(IPPROTO_TCP, ALPROTO_FTP, "USER ", 5, 0,
1004  STREAM_TOSERVER, FTPUserProbingParser, 5, 5) < 0) {
1005  return -1;
1006  }
1008  IPPROTO_TCP, ALPROTO_FTP, "PASS ", 5, 0, STREAM_TOSERVER) < 0) {
1009  return -1;
1010  }
1012  IPPROTO_TCP, ALPROTO_FTP, "PORT ", 5, 0, STREAM_TOSERVER) < 0) {
1013  return -1;
1014  }
1015  // Only check FTP on known ports as the banner has nothing special beyond
1016  // the response code shared with SMTP.
1018  "tcp", IPPROTO_TCP, "ftp", ALPROTO_FTP, 0, 5, NULL, FTPServerProbingParser)) {
1019  // STREAM_TOSERVER here means use 21 as flow destination port
1020  // and NULL, FTPServerProbingParser means use probing parser to client
1021  AppLayerProtoDetectPPRegister(IPPROTO_TCP, "21", ALPROTO_FTP, 0, 5, STREAM_TOSERVER, NULL,
1022  FTPServerProbingParser);
1023  }
1024  return 0;
1025 }
1026 
1027 
1029 
1030 /**
1031  * \brief This function is called to retrieve a ftp request
1032  * \param ftp_state the ftp state structure for the parser
1033  * \param output the resulting output
1034  *
1035  * \retval 1 when the command is parsed, 0 otherwise
1036  */
1037 static AppLayerResult FTPDataParse(Flow *f, FtpDataState *ftpdata_state,
1038  AppLayerParserState *pstate, StreamSlice stream_slice, void *local_data, uint8_t direction)
1039 {
1040  const uint8_t *input = StreamSliceGetData(&stream_slice);
1041  uint32_t input_len = StreamSliceGetDataLen(&stream_slice);
1042  const bool eof = (direction & STREAM_TOSERVER)
1045 
1046  SCTxDataUpdateFileFlags(&ftpdata_state->tx_data, ftpdata_state->state_data.file_flags);
1047  if (ftpdata_state->tx_data.file_tx == 0)
1048  ftpdata_state->tx_data.file_tx = direction & (STREAM_TOSERVER | STREAM_TOCLIENT);
1049 
1050  /* we depend on detection engine for file pruning */
1051  const uint16_t flags = FileFlowFlagsToFlags(ftpdata_state->tx_data.file_flags, direction);
1052  int ret = 0;
1053 
1054  SCLogDebug("FTP-DATA input_len %u flags %04x dir %d/%s EOF %s", input_len, flags, direction,
1055  (direction & STREAM_TOSERVER) ? "toserver" : "toclient", eof ? "true" : "false");
1056 
1057  SCLogDebug("FTP-DATA flags %04x dir %d", flags, direction);
1058  if (input_len && ftpdata_state->files == NULL) {
1059  struct FtpTransferCmd *data =
1061  if (data == NULL) {
1063  }
1064 
1065  /* we shouldn't get data in the wrong dir. Don't set things up for this dir */
1066  if ((direction & data->direction) == 0) {
1067  // TODO set event for data in wrong direction
1068  SCLogDebug("input %u not for our direction (%s): %s/%s", input_len,
1069  (direction & STREAM_TOSERVER) ? "toserver" : "toclient",
1070  data->cmd == FTP_COMMAND_STOR ? "STOR" : "RETR",
1071  (data->direction & STREAM_TOSERVER) ? "toserver" : "toclient");
1073  }
1074 
1075  ftpdata_state->files = FileContainerAlloc();
1076  if (ftpdata_state->files == NULL) {
1079  }
1080 
1081  ftpdata_state->file_name = data->file_name;
1082  ftpdata_state->file_len = data->file_len;
1083  data->file_name = NULL;
1084  data->file_len = 0;
1085  f->parent_id = data->flow_id;
1086  ftpdata_state->command = data->cmd;
1087  switch (data->cmd) {
1088  case FTP_COMMAND_STOR:
1089  ftpdata_state->direction = data->direction;
1090  SCLogDebug("STOR data to %s",
1091  (ftpdata_state->direction & STREAM_TOSERVER) ? "toserver" : "toclient");
1092  break;
1093  case FTP_COMMAND_RETR:
1094  ftpdata_state->direction = data->direction;
1095  SCLogDebug("RETR data to %s",
1096  (ftpdata_state->direction & STREAM_TOSERVER) ? "toserver" : "toclient");
1097  break;
1098  default:
1099  break;
1100  }
1101 
1102  /* open with fixed track_id 0 as we can have just one
1103  * file per ftp-data flow. */
1104  if (FileOpenFileWithId(ftpdata_state->files, &sbcfg,
1105  0ULL, (uint8_t *) ftpdata_state->file_name,
1106  ftpdata_state->file_len,
1107  input, input_len, flags) != 0) {
1108  SCLogDebug("Can't open file");
1109  ret = -1;
1110  }
1112  ftpdata_state->tx_data.files_opened = 1;
1113  } else {
1114  if (ftpdata_state->state == FTPDATA_STATE_FINISHED) {
1115  SCLogDebug("state is already finished");
1116  DEBUG_VALIDATE_BUG_ON(input_len); // data after state finished is a bug.
1118  }
1119  if ((direction & ftpdata_state->direction) == 0) {
1120  if (input_len) {
1121  // TODO set event for data in wrong direction
1122  }
1123  SCLogDebug("input %u not for us (%s): %s/%s", input_len,
1124  (direction & STREAM_TOSERVER) ? "toserver" : "toclient",
1125  ftpdata_state->command == FTP_COMMAND_STOR ? "STOR" : "RETR",
1126  (ftpdata_state->direction & STREAM_TOSERVER) ? "toserver" : "toclient");
1128  }
1129  if (input_len != 0) {
1130  ret = FileAppendData(ftpdata_state->files, &sbcfg, input, input_len);
1131  if (ret == -2) {
1132  ret = 0;
1133  SCLogDebug("FileAppendData() - file no longer being extracted");
1134  goto out;
1135  } else if (ret < 0) {
1136  SCLogDebug("FileAppendData() failed: %d", ret);
1137  ret = -2;
1138  goto out;
1139  }
1140  }
1141  }
1142 
1143  BUG_ON((direction & ftpdata_state->direction) == 0); // should be unreachable
1144  if (eof) {
1145  ret = FileCloseFile(ftpdata_state->files, &sbcfg, NULL, 0, flags);
1146  ftpdata_state->state = FTPDATA_STATE_FINISHED;
1147  SCLogDebug("closed because of eof: state now FTPDATA_STATE_FINISHED");
1148  }
1149 out:
1150  if (ret < 0) {
1152  }
1154 }
1155 
1156 static AppLayerResult FTPDataParseRequest(Flow *f, void *ftp_state, AppLayerParserState *pstate,
1157  StreamSlice stream_slice, void *local_data)
1158 {
1159  return FTPDataParse(f, ftp_state, pstate, stream_slice, local_data, STREAM_TOSERVER);
1160 }
1161 
1162 static AppLayerResult FTPDataParseResponse(Flow *f, void *ftp_state, AppLayerParserState *pstate,
1163  StreamSlice stream_slice, void *local_data)
1164 {
1165  return FTPDataParse(f, ftp_state, pstate, stream_slice, local_data, STREAM_TOCLIENT);
1166 }
1167 
1168 #ifdef DEBUG
1169 static SCMutex ftpdata_state_mem_lock = SCMUTEX_INITIALIZER;
1170 static uint64_t ftpdata_state_memuse = 0;
1171 static uint64_t ftpdata_state_memcnt = 0;
1172 #endif
1173 
1174 static void *FTPDataStateAlloc(void *orig_state, AppProto proto_orig)
1175 {
1176  void *s = FTPCalloc(1, sizeof(FtpDataState));
1177  if (unlikely(s == NULL))
1178  return NULL;
1179 
1180  FtpDataState *state = (FtpDataState *) s;
1182 
1183 #ifdef DEBUG
1184  SCMutexLock(&ftpdata_state_mem_lock);
1185  ftpdata_state_memcnt++;
1186  ftpdata_state_memuse+=sizeof(FtpDataState);
1187  SCMutexUnlock(&ftpdata_state_mem_lock);
1188 #endif
1189  return s;
1190 }
1191 
1192 static void FTPDataStateFree(void *s)
1193 {
1194  FtpDataState *fstate = (FtpDataState *) s;
1195 
1196  if (fstate->tx_data.de_state != NULL) {
1197  DetectEngineStateFree(fstate->tx_data.de_state);
1198  }
1199  if (fstate->file_name != NULL) {
1200  FTPFree(fstate->file_name, fstate->file_len + 1);
1201  }
1202 
1203  FileContainerFree(fstate->files, &sbcfg);
1204 
1205  FTPFree(s, sizeof(FtpDataState));
1206 #ifdef DEBUG
1207  SCMutexLock(&ftpdata_state_mem_lock);
1208  ftpdata_state_memcnt--;
1209  ftpdata_state_memuse-=sizeof(FtpDataState);
1210  SCMutexUnlock(&ftpdata_state_mem_lock);
1211 #endif
1212 }
1213 
1214 static AppLayerTxData *FTPDataGetTxData(void *vtx)
1215 {
1216  FtpDataState *ftp_state = (FtpDataState *)vtx;
1217  return &ftp_state->tx_data;
1218 }
1219 
1220 static AppLayerStateData *FTPDataGetStateData(void *vstate)
1221 {
1222  FtpDataState *ftp_state = (FtpDataState *)vstate;
1223  return &ftp_state->state_data;
1224 }
1225 
1226 static void FTPDataStateTransactionFree(void *state, uint64_t tx_id)
1227 {
1228  /* do nothing */
1229 }
1230 
1231 static void *FTPDataGetTx(void *state, uint64_t tx_id)
1232 {
1233  FtpDataState *ftp_state = (FtpDataState *)state;
1234  return ftp_state;
1235 }
1236 
1237 static uint64_t FTPDataGetTxCnt(void *state)
1238 {
1239  /* ftp-data is single tx */
1240  return 1;
1241 }
1242 
1243 static int FTPDataGetAlstateProgress(void *tx, uint8_t direction)
1244 {
1245  FtpDataState *ftpdata_state = (FtpDataState *)tx;
1246  if (direction == ftpdata_state->direction)
1247  return ftpdata_state->state;
1248  else
1249  return FTPDATA_STATE_FINISHED;
1250 }
1251 
1252 static AppLayerGetFileState FTPDataStateGetTxFiles(void *tx, uint8_t direction)
1253 {
1254  FtpDataState *ftpdata_state = (FtpDataState *)tx;
1255  AppLayerGetFileState files = { .fc = NULL, .cfg = &sbcfg };
1256 
1257  if (direction == ftpdata_state->direction)
1258  files.fc = ftpdata_state->files;
1259 
1260  return files;
1261 }
1262 
1263 static void FTPSetMpmState(void)
1264 {
1265  ftp_mpm_ctx = SCCalloc(1, sizeof(MpmCtx));
1266  if (unlikely(ftp_mpm_ctx == NULL)) {
1267  exit(EXIT_FAILURE);
1268  }
1269  MpmInitCtx(ftp_mpm_ctx, FTP_MPM);
1270 
1271  uint32_t i = 0;
1272  for (i = 0; i < sizeof(FtpCommands)/sizeof(FtpCommand) - 1; i++) {
1273  const FtpCommand *cmd = &FtpCommands[i];
1274  if (cmd->command_length == 0)
1275  continue;
1276 
1277  MpmAddPatternCI(ftp_mpm_ctx,
1278  (uint8_t *)cmd->command_name,
1279  cmd->command_length,
1280  0 /* defunct */, 0 /* defunct */,
1281  i /* id */, i /* rule id */ , 0 /* no flags */);
1282  }
1283 
1284  mpm_table[FTP_MPM].Prepare(ftp_mpm_ctx);
1285 
1286 }
1287 
1288 static void FTPFreeMpmState(void)
1289 {
1290  if (ftp_mpm_ctx != NULL) {
1291  mpm_table[FTP_MPM].DestroyCtx(ftp_mpm_ctx);
1292  SCFree(ftp_mpm_ctx);
1293  ftp_mpm_ctx = NULL;
1294  }
1295 }
1296 
1297 /** \brief FTP tx iterator, specialized for its linked list
1298  *
1299  * \retval txptr or NULL if no more txs in list
1300  */
1301 static AppLayerGetTxIterTuple FTPGetTxIterator(const uint8_t ipproto, const AppProto alproto,
1302  void *alstate, uint64_t min_tx_id, uint64_t max_tx_id, AppLayerGetTxIterState *state)
1303 {
1304  FtpState *ftp_state = (FtpState *)alstate;
1305  AppLayerGetTxIterTuple no_tuple = { NULL, 0, false };
1306  if (ftp_state) {
1307  FTPTransaction *tx_ptr;
1308  if (state->un.ptr == NULL) {
1309  tx_ptr = TAILQ_FIRST(&ftp_state->tx_list);
1310  } else {
1311  tx_ptr = (FTPTransaction *)state->un.ptr;
1312  }
1313  if (tx_ptr) {
1314  while (tx_ptr->tx_id < min_tx_id) {
1315  tx_ptr = TAILQ_NEXT(tx_ptr, next);
1316  if (!tx_ptr) {
1317  return no_tuple;
1318  }
1319  }
1320  if (tx_ptr->tx_id >= max_tx_id) {
1321  return no_tuple;
1322  }
1323  state->un.ptr = TAILQ_NEXT(tx_ptr, next);
1324  AppLayerGetTxIterTuple tuple = {
1325  .tx_ptr = tx_ptr,
1326  .tx_id = tx_ptr->tx_id,
1327  .has_next = (state->un.ptr != NULL),
1328  };
1329  return tuple;
1330  }
1331  }
1332  return no_tuple;
1333 }
1334 
1336 {
1337  const char *proto_name = "ftp";
1338  const char *proto_data_name = "ftp-data";
1339 
1340  /** FTP */
1341  if (AppLayerProtoDetectConfProtoDetectionEnabled("tcp", proto_name)) {
1343  if (FTPRegisterPatternsForProtocolDetection() < 0 )
1344  return;
1346  }
1347 
1348  if (AppLayerParserConfParserEnabled("tcp", proto_name)) {
1349  AppLayerParserRegisterParser(IPPROTO_TCP, ALPROTO_FTP, STREAM_TOSERVER,
1350  FTPParseRequest);
1351  AppLayerParserRegisterParser(IPPROTO_TCP, ALPROTO_FTP, STREAM_TOCLIENT,
1352  FTPParseResponse);
1353  AppLayerParserRegisterStateFuncs(IPPROTO_TCP, ALPROTO_FTP, FTPStateAlloc, FTPStateFree);
1354  AppLayerParserRegisterParserAcceptableDataDirection(IPPROTO_TCP, ALPROTO_FTP, STREAM_TOSERVER | STREAM_TOCLIENT);
1355 
1356  AppLayerParserRegisterTxFreeFunc(IPPROTO_TCP, ALPROTO_FTP, FTPStateTransactionFree);
1357 
1358  AppLayerParserRegisterGetTx(IPPROTO_TCP, ALPROTO_FTP, FTPGetTx);
1359  AppLayerParserRegisterTxDataFunc(IPPROTO_TCP, ALPROTO_FTP, FTPGetTxData);
1360  AppLayerParserRegisterGetTxIterator(IPPROTO_TCP, ALPROTO_FTP, FTPGetTxIterator);
1361  AppLayerParserRegisterStateDataFunc(IPPROTO_TCP, ALPROTO_FTP, FTPGetStateData);
1362 
1363  AppLayerParserRegisterLocalStorageFunc(IPPROTO_TCP, ALPROTO_FTP, FTPLocalStorageAlloc,
1364  FTPLocalStorageFree);
1365  AppLayerParserRegisterGetTxCnt(IPPROTO_TCP, ALPROTO_FTP, FTPGetTxCnt);
1366 
1367  AppLayerParserRegisterGetStateProgressFunc(IPPROTO_TCP, ALPROTO_FTP, FTPGetAlstateProgress);
1368 
1371 
1373  AppLayerParserRegisterParser(IPPROTO_TCP, ALPROTO_FTPDATA, STREAM_TOSERVER,
1374  FTPDataParseRequest);
1375  AppLayerParserRegisterParser(IPPROTO_TCP, ALPROTO_FTPDATA, STREAM_TOCLIENT,
1376  FTPDataParseResponse);
1377  AppLayerParserRegisterStateFuncs(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataStateAlloc, FTPDataStateFree);
1378  AppLayerParserRegisterParserAcceptableDataDirection(IPPROTO_TCP, ALPROTO_FTPDATA, STREAM_TOSERVER | STREAM_TOCLIENT);
1379  AppLayerParserRegisterTxFreeFunc(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataStateTransactionFree);
1380 
1381  AppLayerParserRegisterGetTxFilesFunc(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataStateGetTxFiles);
1382 
1383  AppLayerParserRegisterGetTx(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataGetTx);
1384  AppLayerParserRegisterTxDataFunc(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataGetTxData);
1385  AppLayerParserRegisterStateDataFunc(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataGetStateData);
1386 
1387  AppLayerParserRegisterGetTxCnt(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataGetTxCnt);
1388 
1389  AppLayerParserRegisterGetStateProgressFunc(IPPROTO_TCP, ALPROTO_FTPDATA, FTPDataGetAlstateProgress);
1390 
1393 
1394  AppLayerParserRegisterGetEventInfo(IPPROTO_TCP, ALPROTO_FTP, ftp_get_event_info);
1395  AppLayerParserRegisterGetEventInfoById(IPPROTO_TCP, ALPROTO_FTP, ftp_get_event_info_by_id);
1396 
1399 
1400  sbcfg.buf_size = 4096;
1401  sbcfg.Calloc = FTPCalloc;
1402  sbcfg.Realloc = FTPRealloc;
1403  sbcfg.Free = FTPFree;
1404 
1405  FTPParseMemcap();
1406  } else {
1407  SCLogInfo("Parser disabled for %s protocol. Protocol detection still on.", proto_name);
1408  }
1409 
1410  FTPSetMpmState();
1411 
1412 #ifdef UNITTESTS
1414 #endif
1415 }
1416 
1417 /*
1418  * \brief Returns the ending offset of the next line from a multi-line buffer.
1419  *
1420  * "Buffer" refers to a FTP response in a single buffer containing multiple lines.
1421  * Here, "next line" is defined as terminating on
1422  * - Newline character
1423  * - Null character
1424  *
1425  * \param buffer Contains zero or more characters.
1426  * \param len Size, in bytes, of buffer.
1427  *
1428  * \retval Offset from the start of buffer indicating the where the
1429  * next "line ends". The characters between the input buffer and this
1430  * value comprise the line.
1431  *
1432  * NULL is found first or a newline isn't found, then UINT16_MAX is returned.
1433  */
1434 uint16_t JsonGetNextLineFromBuffer(const char *buffer, const uint16_t len)
1435 {
1436  if (!buffer || *buffer == '\0') {
1437  return UINT16_MAX;
1438  }
1439 
1440  char *c = strchr(buffer, '\n');
1441  return c == NULL ? len : (uint16_t)(c - buffer + 1);
1442 }
1443 
1444 bool EveFTPDataAddMetadata(void *vtx, JsonBuilder *jb)
1445 {
1446  const FtpDataState *ftp_state = (FtpDataState *)vtx;
1447  jb_open_object(jb, "ftp_data");
1448 
1449  if (ftp_state->file_name) {
1450  jb_set_string_from_bytes(jb, "filename", ftp_state->file_name, ftp_state->file_len);
1451  }
1452  switch (ftp_state->command) {
1453  case FTP_COMMAND_STOR:
1454  JB_SET_STRING(jb, "command", "STOR");
1455  break;
1456  case FTP_COMMAND_RETR:
1457  JB_SET_STRING(jb, "command", "RETR");
1458  break;
1459  default:
1460  break;
1461  }
1462  jb_close(jb);
1463  return true;
1464 }
1465 
1466 /**
1467  * \brief Free memory allocated for global FTP parser state.
1468  */
1470 {
1471  FTPFreeMpmState();
1472 }
1473 
1474 /* UNITTESTS */
1475 #ifdef UNITTESTS
1476 #include "stream-tcp.h"
1477 
1478 /** \test Send a get request in one chunk. */
1479 static int FTPParserTest01(void)
1480 {
1481  Flow f;
1482  uint8_t ftpbuf[] = "PORT 192,168,1,1,0,80\r\n";
1483  uint32_t ftplen = sizeof(ftpbuf) - 1; /* minus the \0 */
1484  TcpSession ssn;
1486 
1487  memset(&f, 0, sizeof(f));
1488  memset(&ssn, 0, sizeof(ssn));
1489 
1490  f.protoctx = (void *)&ssn;
1491  f.proto = IPPROTO_TCP;
1492  f.alproto = ALPROTO_FTP;
1493 
1494  StreamTcpInitConfig(true);
1495 
1496  int r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1497  STREAM_TOSERVER | STREAM_EOF, ftpbuf, ftplen);
1498  FAIL_IF(r != 0);
1499 
1500  FtpState *ftp_state = f.alstate;
1501  FAIL_IF_NULL(ftp_state);
1502  FAIL_IF(ftp_state->command != FTP_COMMAND_PORT);
1503 
1505  StreamTcpFreeConfig(true);
1506  PASS;
1507 }
1508 
1509 /** \test Supply RETR without a filename */
1510 static int FTPParserTest11(void)
1511 {
1512  Flow f;
1513  uint8_t ftpbuf1[] = "PORT 192,168,1,1,0,80\r\n";
1514  uint8_t ftpbuf2[] = "RETR\r\n";
1515  uint8_t ftpbuf3[] = "227 OK\r\n";
1516  TcpSession ssn;
1517 
1519 
1520  memset(&f, 0, sizeof(f));
1521  memset(&ssn, 0, sizeof(ssn));
1522 
1523  f.protoctx = (void *)&ssn;
1524  f.proto = IPPROTO_TCP;
1525  f.alproto = ALPROTO_FTP;
1526 
1527  StreamTcpInitConfig(true);
1528 
1529  int r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1530  STREAM_TOSERVER | STREAM_START, ftpbuf1,
1531  sizeof(ftpbuf1) - 1);
1532  FAIL_IF(r != 0);
1533 
1534  /* Response */
1535  r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1536  STREAM_TOCLIENT,
1537  ftpbuf3,
1538  sizeof(ftpbuf3) - 1);
1539  FAIL_IF(r != 0);
1540 
1541  r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1542  STREAM_TOSERVER, ftpbuf2,
1543  sizeof(ftpbuf2) - 1);
1544  FAIL_IF(r == 0);
1545 
1546  FtpState *ftp_state = f.alstate;
1547  FAIL_IF_NULL(ftp_state);
1548 
1549  FAIL_IF(ftp_state->command != FTP_COMMAND_RETR);
1550 
1552  StreamTcpFreeConfig(true);
1553  PASS;
1554 }
1555 
1556 /** \test Supply STOR without a filename */
1557 static int FTPParserTest12(void)
1558 {
1559  Flow f;
1560  uint8_t ftpbuf1[] = "PORT 192,168,1,1,0,80\r\n";
1561  uint8_t ftpbuf2[] = "STOR\r\n";
1562  uint8_t ftpbuf3[] = "227 OK\r\n";
1563  TcpSession ssn;
1564 
1566 
1567  memset(&f, 0, sizeof(f));
1568  memset(&ssn, 0, sizeof(ssn));
1569 
1570  f.protoctx = (void *)&ssn;
1571  f.proto = IPPROTO_TCP;
1572  f.alproto = ALPROTO_FTP;
1573 
1574  StreamTcpInitConfig(true);
1575 
1576  int r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1577  STREAM_TOSERVER | STREAM_START, ftpbuf1,
1578  sizeof(ftpbuf1) - 1);
1579  FAIL_IF(r != 0);
1580 
1581  /* Response */
1582  r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1583  STREAM_TOCLIENT,
1584  ftpbuf3,
1585  sizeof(ftpbuf3) - 1);
1586  FAIL_IF(r != 0);
1587 
1588  r = AppLayerParserParse(NULL, alp_tctx, &f, ALPROTO_FTP,
1589  STREAM_TOSERVER, ftpbuf2,
1590  sizeof(ftpbuf2) - 1);
1591  FAIL_IF(r == 0);
1592 
1593  FtpState *ftp_state = f.alstate;
1594  FAIL_IF_NULL(ftp_state);
1595 
1596  FAIL_IF(ftp_state->command != FTP_COMMAND_STOR);
1597 
1599  StreamTcpFreeConfig(true);
1600  PASS;
1601 }
1602 #endif /* UNITTESTS */
1603 
1605 {
1606 #ifdef UNITTESTS
1607  UtRegisterTest("FTPParserTest01", FTPParserTest01);
1608  UtRegisterTest("FTPParserTest11", FTPParserTest11);
1609  UtRegisterTest("FTPParserTest12", FTPParserTest12);
1610 #endif /* UNITTESTS */
1611 }
1612 
MpmInitThreadCtx
void MpmInitThreadCtx(MpmThreadCtx *mpm_thread_ctx, uint16_t matcher)
Definition: util-mpm.c:196
FTPTransaction_::request_truncated
bool request_truncated
Definition: app-layer-ftp.h:127
FTP_STATE_FINISHED
@ FTP_STATE_FINISHED
Definition: app-layer-ftp.h:33
PmqReset
void PmqReset(PrefilterRuleStore *pmq)
Reset a Pmq for reusage. Meant to be called after a single search.
Definition: util-prefilter.c:102
AppLayerParserRegisterGetStateProgressFunc
void AppLayerParserRegisterGetStateProgressFunc(uint8_t ipproto, AppProto alproto, int(*StateGetProgress)(void *alstate, uint8_t direction))
Definition: app-layer-parser.c:467
FTPTransaction_::command_descriptor
const FtpCommand * command_descriptor
Definition: app-layer-ftp.h:130
AppLayerProtoDetectPPParseConfPorts
int AppLayerProtoDetectPPParseConfPorts(const char *ipproto_name, uint8_t ipproto, const char *alproto_name, AppProto alproto, uint16_t min_depth, uint16_t max_depth, ProbingParserFPtr ProbingParserTs, ProbingParserFPtr ProbingParserTc)
Definition: app-layer-detect-proto.c:1583
len
uint8_t len
Definition: app-layer-dnp3.h:2
FTP_COMMAND_USER
@ FTP_COMMAND_USER
Definition: app-layer-ftp.h:84
FAIL_IF_NULL
#define FAIL_IF_NULL(expr)
Fail a test if expression evaluates to NULL.
Definition: util-unittest.h:89
FTP_COMMAND_STAT
@ FTP_COMMAND_STAT
Definition: app-layer-ftp.h:77
FTP_COMMAND_DELE
@ FTP_COMMAND_DELE
Definition: app-layer-ftp.h:46
FTPTransaction_::request
uint8_t * request
Definition: app-layer-ftp.h:126
AppLayerGetTxIterState::ptr
void * ptr
Definition: app-layer-parser.h:145
AppLayerProtoDetectPMRegisterPatternCI
int AppLayerProtoDetectPMRegisterPatternCI(uint8_t ipproto, AppProto alproto, const char *pattern, uint16_t depth, uint16_t offset, uint8_t direction)
Registers a case-insensitive pattern for protocol detection.
Definition: app-layer-detect-proto.c:1684
FTPThreadCtx_
Definition: app-layer-ftp.c:41
FtpTransferCmd::flow_id
uint64_t flow_id
Definition: app-layer-ftp.c:436
StreamingBufferConfig_::buf_size
uint32_t buf_size
Definition: util-streaming-buffer.h:66
FTPDATA_STATE_IN_PROGRESS
@ FTPDATA_STATE_IN_PROGRESS
Definition: app-layer-ftp.h:167
AppLayerParserRegisterLocalStorageFunc
void AppLayerParserRegisterLocalStorageFunc(uint8_t ipproto, AppProto alproto, void *(*LocalStorageAlloc)(void), void(*LocalStorageFree)(void *))
Definition: app-layer-parser.c:425
FTP_COMMAND_ALLO
@ FTP_COMMAND_ALLO
Definition: app-layer-ftp.h:40
TAILQ_INIT
#define TAILQ_INIT(head)
Definition: queue.h:262
FtpState_::active
bool active
Definition: app-layer-ftp.h:146
SC_ATOMIC_INIT
#define SC_ATOMIC_INIT(name)
wrapper for initializing an atomic variable.
Definition: util-atomic.h:314
FtpCommands
const FtpCommand FtpCommands[FTP_COMMAND_MAX+1]
Definition: app-layer-ftp.c:51
FileContainerAlloc
FileContainer * FileContainerAlloc(void)
allocate a FileContainer
Definition: util-file.c:497
FtpDataState_::state
uint8_t state
Definition: app-layer-ftp.h:179
StreamingBufferConfig_::Calloc
void *(* Calloc)(size_t n, size_t size)
Definition: util-streaming-buffer.h:69
MpmThreadCtx_
Definition: util-mpm.h:46
stream-tcp.h
FtpState
struct FtpState_ FtpState
unlikely
#define unlikely(expr)
Definition: util-optimize.h:35
AppLayerRequestProtocolTLSUpgrade
bool AppLayerRequestProtocolTLSUpgrade(Flow *f)
request applayer to wrap up this protocol and rerun protocol detection with expectation of TLS....
Definition: app-layer-detect-proto.c:1842
UtRegisterTest
void UtRegisterTest(const char *name, int(*TestFn)(void))
Register unit test.
Definition: util-unittest.c:103
AppLayerExpectationGetFlowId
FlowStorageId AppLayerExpectationGetFlowId(void)
Definition: app-layer-expectation.c:288
PrefilterRuleStore_
structure for storing potential rule matches
Definition: util-prefilter.h:34
SCLogDebug
#define SCLogDebug(...)
Definition: util-debug.h:269
ParseSizeStringU64
int ParseSizeStringU64(const char *size, uint64_t *res)
Definition: util-misc.c:190
next
struct HtpBodyChunk_ * next
Definition: app-layer-htp.h:0
FTP_COMMAND_RNFR
@ FTP_COMMAND_RNFR
Definition: app-layer-ftp.h:72
Flow_::proto
uint8_t proto
Definition: flow.h:382
AppProto
uint16_t AppProto
Definition: app-layer-protos.h:84
FtpState_::command
FtpRequestCommand command
Definition: app-layer-ftp.h:155
AppLayerParserConfParserEnabled
int AppLayerParserConfParserEnabled(const char *ipproto, const char *alproto_name)
check if a parser is enabled in the config Returns enabled always if: were running unittests
Definition: app-layer-parser.c:321
ALPROTO_POP3
@ ALPROTO_POP3
Definition: app-layer-protos.h:66
STREAMING_BUFFER_CONFIG_INITIALIZER
#define STREAMING_BUFFER_CONFIG_INITIALIZER
Definition: util-streaming-buffer.h:74
FileContainerFree
void FileContainerFree(FileContainer *ffc, const StreamingBufferConfig *cfg)
Free a FileContainer.
Definition: util-file.c:533
Flow_
Flow data structure.
Definition: flow.h:360
FTPTransaction_::done
bool done
Definition: app-layer-ftp.h:133
FTP_COMMAND_MSND
@ FTP_COMMAND_MSND
Definition: app-layer-ftp.h:59
FTP_COMMAND_EPSV
@ FTP_COMMAND_EPSV
Definition: app-layer-ftp.h:47
SC_ATOMIC_ADD
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
Definition: util-atomic.h:332
AppLayerParserRegisterStateProgressCompletionStatus
void AppLayerParserRegisterStateProgressCompletionStatus(AppProto alproto, const int ts, const int tc)
Definition: app-layer-parser.c:519
AppLayerParserRegisterParserAcceptableDataDirection
void AppLayerParserRegisterParserAcceptableDataDirection(uint8_t ipproto, AppProto alproto, uint8_t direction)
Definition: app-layer-parser.c:391
FTP_COMMAND_RNTO
@ FTP_COMMAND_RNTO
Definition: app-layer-ftp.h:73
FtpState_::current_line_truncated_tc
bool current_line_truncated_tc
Definition: app-layer-ftp.h:153
AppLayerParserRegisterTxFreeFunc
void AppLayerParserRegisterTxFreeFunc(uint8_t ipproto, AppProto alproto, void(*StateTransactionFree)(void *, uint64_t))
Definition: app-layer-parser.c:478
FTP_COMMAND_MODE
@ FTP_COMMAND_MODE
Definition: app-layer-ftp.h:55
FTPTransaction_::tx_data
AppLayerTxData tx_data
Definition: app-layer-ftp.h:122
TAILQ_FOREACH
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:252
FTP_COMMAND_RMD
@ FTP_COMMAND_RMD
Definition: app-layer-ftp.h:71
FtpDataState_::command
FtpRequestCommand command
Definition: app-layer-ftp.h:178
FTPMemuseGlobalCounter
uint64_t FTPMemuseGlobalCounter(void)
Definition: app-layer-ftp.c:165
AppLayerParserThreadCtxFree
void AppLayerParserThreadCtxFree(AppLayerParserThreadCtx *tctx)
Destroys the app layer parser thread context obtained using AppLayerParserThreadCtxAlloc().
Definition: app-layer-parser.c:301
FTP_COMMAND_ABOR
@ FTP_COMMAND_ABOR
Definition: app-layer-ftp.h:38
SCMutexLock
#define SCMutexLock(mut)
Definition: threads-debug.h:117
rust.h
MIN
#define MIN(x, y)
Definition: suricata-common.h:391
FTP_COMMAND_MKD
@ FTP_COMMAND_MKD
Definition: app-layer-ftp.h:53
AppLayerDecoderEventsFreeEvents
void AppLayerDecoderEventsFreeEvents(AppLayerDecoderEvents **events)
Definition: app-layer-events.c:133
FtpLineState_::buf
const uint8_t * buf
Definition: app-layer-ftp.h:105
FtpCommand_::command
FtpRequestCommand command
Definition: app-layer-ftp.h:94
ALPROTO_FTP
@ ALPROTO_FTP
Definition: app-layer-protos.h:31
FTP_COMMAND_LIST
@ FTP_COMMAND_LIST
Definition: app-layer-ftp.h:50
SCMUTEX_INITIALIZER
#define SCMUTEX_INITIALIZER
Definition: threads-debug.h:121
FtpCommand_::command_name
const char * command_name
Definition: app-layer-ftp.h:93
FtpDataState_::file_len
int16_t file_len
Definition: app-layer-ftp.h:177
TAILQ_INSERT_TAIL
#define TAILQ_INSERT_TAIL(head, elm, field)
Definition: queue.h:294
app-layer-ftp.h
APP_LAYER_PARSER_EOF_TS
#define APP_LAYER_PARSER_EOF_TS
Definition: app-layer-parser.h:39
Flow_::protoctx
void * protoctx
Definition: flow.h:450
FTPString_::len
uint32_t len
Definition: app-layer-ftp.h:113
FtpDataState_::direction
uint8_t direction
Definition: app-layer-ftp.h:180
FtpInput_::len
int32_t len
Definition: app-layer-ftp.c:343
SC_ELIMIT
@ SC_ELIMIT
Definition: util-error.h:31
FtpTransferCmd::file_len
uint16_t file_len
Definition: app-layer-ftp.c:438
SC_ATOMIC_DECLARE
SC_ATOMIC_DECLARE(uint64_t, ftp_memuse)
SC_ENOMEM
@ SC_ENOMEM
Definition: util-error.h:29
FTPParserCleanup
void FTPParserCleanup(void)
Free memory allocated for global FTP parser state.
Definition: app-layer-ftp.c:1469
EveFTPDataAddMetadata
bool EveFTPDataAddMetadata(void *vtx, JsonBuilder *jb)
Definition: app-layer-ftp.c:1444
FTP_COMMAND_HELP
@ FTP_COMMAND_HELP
Definition: app-layer-ftp.h:48
FTP_COMMAND_SIZE
@ FTP_COMMAND_SIZE
Definition: app-layer-ftp.h:75
FTPString_::truncated
bool truncated
Definition: app-layer-ftp.h:114
MpmInitCtx
void MpmInitCtx(MpmCtx *mpm_ctx, uint8_t matcher)
Definition: util-mpm.c:210
AppLayerProtoDetectPPRegister
void AppLayerProtoDetectPPRegister(uint8_t ipproto, const char *portstr, AppProto alproto, uint16_t min_depth, uint16_t max_depth, uint8_t direction, ProbingParserFPtr ProbingParser1, ProbingParserFPtr ProbingParser2)
register parser at a port
Definition: app-layer-detect-proto.c:1543
ftp_max_line_len
uint32_t ftp_max_line_len
Definition: app-layer-ftp.c:109
ConfGet
int ConfGet(const char *name, const char **vptr)
Retrieve the value of a configuration node.
Definition: conf.c:335
FTP_COMMAND_CWD
@ FTP_COMMAND_CWD
Definition: app-layer-ftp.h:45
FTP_COMMAND_MSAM
@ FTP_COMMAND_MSAM
Definition: app-layer-ftp.h:58
FTP_COMMAND_SITE
@ FTP_COMMAND_SITE
Definition: app-layer-ftp.h:74
FtpState_
Definition: app-layer-ftp.h:145
app-layer-expectation.h
app-layer-detect-proto.h
StreamTcpInitConfig
void StreamTcpInitConfig(bool)
To initialize the stream global configuration data.
Definition: stream-tcp.c:461
FTPDATA_STATE_FINISHED
@ FTPDATA_STATE_FINISHED
Definition: app-layer-ftp.h:168
FTP_COMMAND_STOU
@ FTP_COMMAND_STOU
Definition: app-layer-ftp.h:79
APP_LAYER_INCOMPLETE
#define APP_LAYER_INCOMPLETE(c, n)
Definition: app-layer-parser.h:99
TAILQ_REMOVE
#define TAILQ_REMOVE(head, elm, field)
Definition: queue.h:312
MpmDestroyThreadCtx
void MpmDestroyThreadCtx(MpmThreadCtx *mpm_thread_ctx, const uint16_t matcher)
Definition: util-mpm.c:203
JB_SET_STRING
#define JB_SET_STRING(jb, key, val)
Definition: rust.h:26
TAILQ_FIRST
#define TAILQ_FIRST(head)
Definition: queue.h:250
FtpState_::port_line
uint8_t * port_line
Definition: app-layer-ftp.h:159
AppLayerParserState_
Definition: app-layer-parser.c:130
PASS
#define PASS
Pass the test.
Definition: util-unittest.h:105
FTP_COMMAND_APPE
@ FTP_COMMAND_APPE
Definition: app-layer-ftp.h:41
FTPThreadCtx_::pmq
PrefilterRuleStore * pmq
Definition: app-layer-ftp.c:43
SC_FILENAME_MAX
#define SC_FILENAME_MAX
Definition: util-file.h:62
FtpState_::curr_tx
FTPTransaction * curr_tx
Definition: app-layer-ftp.h:148
FTP_COMMAND_TYPE
@ FTP_COMMAND_TYPE
Definition: app-layer-ftp.h:82
SCMutexUnlock
#define SCMutexUnlock(mut)
Definition: threads-debug.h:119
FtpDataState_::state_data
AppLayerStateData state_data
Definition: app-layer-ftp.h:182
alp_tctx
AppLayerParserThreadCtx * alp_tctx
Definition: fuzz_applayerparserparse.c:22
AppLayerParserRegisterLogger
void AppLayerParserRegisterLogger(uint8_t ipproto, AppProto alproto)
Definition: app-layer-parser.c:458
util-print.h
SCEnter
#define SCEnter(...)
Definition: util-debug.h:271
FTP_COMMAND_PORT
@ FTP_COMMAND_PORT
Definition: app-layer-ftp.h:65
FTP_COMMAND_MAX
@ FTP_COMMAND_MAX
Definition: app-layer-ftp.h:88
FTP_COMMAND_REIN
@ FTP_COMMAND_REIN
Definition: app-layer-ftp.h:68
FtpTransferCmd::cmd
FtpRequestCommand cmd
Definition: app-layer-ftp.c:440
AppLayerParserRegisterStateFuncs
void AppLayerParserRegisterStateFuncs(uint8_t ipproto, AppProto alproto, void *(*StateAlloc)(void *, AppProto), void(*StateFree)(void *))
Definition: app-layer-parser.c:412
AppLayerProtoDetectPMRegisterPatternCSwPP
int AppLayerProtoDetectPMRegisterPatternCSwPP(uint8_t ipproto, AppProto alproto, const char *pattern, uint16_t depth, uint16_t offset, uint8_t direction, ProbingParserFPtr PPFunc, uint16_t pp_min_depth, uint16_t pp_max_depth)
Definition: app-layer-detect-proto.c:1670
FtpLineState_::lf_found
bool lf_found
Definition: app-layer-ftp.h:108
app-layer-parser.h
Flow_::todstbytecnt
uint64_t todstbytecnt
Definition: flow.h:503
BUG_ON
#define BUG_ON(x)
Definition: suricata-common.h:300
FtpState_::state_data
AppLayerStateData state_data
Definition: app-layer-ftp.h:163
SC_ATOMIC_SUB
#define SC_ATOMIC_SUB(name, val)
sub a value from our atomic variable
Definition: util-atomic.h:341
FTPParserRegisterTests
void FTPParserRegisterTests(void)
Definition: app-layer-ftp.c:1604
RegisterFTPParsers
void RegisterFTPParsers(void)
Definition: app-layer-ftp.c:1335
AppLayerParserRegisterProtocolUnittests
void AppLayerParserRegisterProtocolUnittests(uint8_t ipproto, AppProto alproto, void(*RegisterUnittests)(void))
Definition: app-layer-parser.c:1826
AppLayerExpectationCreate
int AppLayerExpectationCreate(Flow *f, int direction, Port src, Port dst, AppProto alproto, void *data)
Definition: app-layer-expectation.c:219
AppLayerGetTxIterState
Definition: app-layer-parser.h:143
FtpCommand_
Definition: app-layer-ftp.h:92
FtpTransferCmd
Definition: app-layer-ftp.c:432
APP_LAYER_PARSER_EOF_TC
#define APP_LAYER_PARSER_EOF_TC
Definition: app-layer-parser.h:40
ftp_config_memcap
uint64_t ftp_config_memcap
Definition: app-layer-ftp.c:107
FTP_COMMAND_CHMOD
@ FTP_COMMAND_CHMOD
Definition: app-layer-ftp.h:44
AppLayerRegisterExpectationProto
void AppLayerRegisterExpectationProto(uint8_t proto, AppProto alproto)
Definition: app-layer-detect-proto.c:2127
MpmTableElmt_::Prepare
int(* Prepare)(struct MpmCtx_ *)
Definition: util-mpm.h:166
FTP_COMMAND_SYST
@ FTP_COMMAND_SYST
Definition: app-layer-ftp.h:81
AppLayerParserRegisterGetEventInfo
void AppLayerParserRegisterGetEventInfo(uint8_t ipproto, AppProto alproto, int(*StateGetEventInfo)(const char *event_name, int *event_id, AppLayerEventType *event_type))
Definition: app-layer-parser.c:556
FileOpenFileWithId
int FileOpenFileWithId(FileContainer *ffc, const StreamingBufferConfig *sbcfg, uint32_t track_id, const uint8_t *name, uint16_t name_len, const uint8_t *data, uint32_t data_len, uint16_t flags)
Open a new File.
Definition: util-file.c:984
AppLayerParserRegisterGetTxFilesFunc
void AppLayerParserRegisterGetTxFilesFunc(uint8_t ipproto, AppProto alproto, AppLayerGetFileState(*GetTxFiles)(void *, uint8_t))
Definition: app-layer-parser.c:439
AppLayerProtoDetectRegisterProtocol
void AppLayerProtoDetectRegisterProtocol(AppProto alproto, const char *alproto_name)
Registers a protocol for protocol detection phase.
Definition: app-layer-detect-proto.c:1761
FtpDataState
struct FtpDataState_ FtpDataState
FTP_COMMAND_ACCT
@ FTP_COMMAND_ACCT
Definition: app-layer-ftp.h:39
FileAppendData
int FileAppendData(FileContainer *ffc, const StreamingBufferConfig *sbcfg, const uint8_t *data, uint32_t data_len)
Store/handle a chunk of file data in the File structure The last file in the FileContainer will be us...
Definition: util-file.c:783
FTPMemcapGlobalCounter
uint64_t FTPMemcapGlobalCounter(void)
Definition: app-layer-ftp.c:171
MpmTableElmt_::Search
uint32_t(* Search)(const struct MpmCtx_ *, struct MpmThreadCtx_ *, PrefilterRuleStore *, const uint8_t *, uint32_t)
Definition: util-mpm.h:168
FTP_COMMAND_MRSQ
@ FTP_COMMAND_MRSQ
Definition: app-layer-ftp.h:57
FtpInput
struct FtpInput_ FtpInput
FtpDataState_::tx_data
AppLayerTxData tx_data
Definition: app-layer-ftp.h:181
SCLogInfo
#define SCLogInfo(...)
Macro used to log INFORMATIONAL messages.
Definition: util-debug.h:224
FlowGetStorageById
void * FlowGetStorageById(const Flow *f, FlowStorageId id)
Definition: flow-storage.c:40
AppLayerParserRegisterParser
int AppLayerParserRegisterParser(uint8_t ipproto, AppProto alproto, uint8_t direction, AppLayerParserFPtr Parser)
Register app layer parser for the protocol.
Definition: app-layer-parser.c:379
FtpInput_::orig_len
int32_t orig_len
Definition: app-layer-ftp.c:344
DetectEngineStateFree
void DetectEngineStateFree(DetectEngineState *state)
Frees a DetectEngineState object.
Definition: detect-engine-state.c:169
FtpTransferCmd::direction
uint8_t direction
Definition: app-layer-ftp.c:439
SCRealloc
#define SCRealloc(ptr, sz)
Definition: util-mem.h:50
AppLayerParserThreadCtxAlloc
AppLayerParserThreadCtx * AppLayerParserThreadCtxAlloc(void)
Gets a new app layer protocol's parser thread context.
Definition: app-layer-parser.c:280
AppLayerParserRegisterGetTx
void AppLayerParserRegisterGetTx(uint8_t ipproto, AppProto alproto, void *(StateGetTx)(void *alstate, uint64_t tx_id))
Definition: app-layer-parser.c:500
APP_LAYER_OK
#define APP_LAYER_OK
Definition: app-layer-parser.h:87
AppLayerTxData
struct AppLayerTxData AppLayerTxData
Definition: detect.h:1364
cnt
uint32_t cnt
Definition: tmqh-packetpool.h:7
SCReturnStruct
#define SCReturnStruct(x)
Definition: util-debug.h:291
FTPTransaction_::request_length
uint32_t request_length
Definition: app-layer-ftp.h:125
FAIL_IF
#define FAIL_IF(expr)
Fail a test if expression evaluates to true.
Definition: util-unittest.h:71
util-mpm.h
StreamTcpFreeConfig
void StreamTcpFreeConfig(bool quiet)
Definition: stream-tcp.c:792
flags
uint8_t flags
Definition: decode-gre.h:0
FTP_COMMAND_NOOP
@ FTP_COMMAND_NOOP
Definition: app-layer-ftp.h:62
AppLayerParserParse
int AppLayerParserParse(ThreadVars *tv, AppLayerParserThreadCtx *alp_tctx, Flow *f, AppProto alproto, uint8_t flags, const uint8_t *input, uint32_t input_len)
Definition: app-layer-parser.c:1267
FtpLineState_
Definition: app-layer-ftp.h:102
FTP_COMMAND_CDUP
@ FTP_COMMAND_CDUP
Definition: app-layer-ftp.h:43
suricata-common.h
ftp_config_maxtx
uint32_t ftp_config_maxtx
Definition: app-layer-ftp.c:108
FTP_COMMAND_PASS
@ FTP_COMMAND_PASS
Definition: app-layer-ftp.h:63
AppLayerDecoderEventsSetEventRaw
void AppLayerDecoderEventsSetEventRaw(AppLayerDecoderEvents **sevents, uint8_t event)
Set an app layer decoder event.
Definition: app-layer-events.c:91
FtpState_::port_line_len
uint32_t port_line_len
Definition: app-layer-ftp.h:157
FtpState_::dyn_port
uint16_t dyn_port
Definition: app-layer-ftp.h:161
TAILQ_NEXT
#define TAILQ_NEXT(elm, field)
Definition: queue.h:307
ALPROTO_FTPDATA
@ ALPROTO_FTPDATA
Definition: app-layer-protos.h:47
AppLayerParserRegisterStateDataFunc
void AppLayerParserRegisterStateDataFunc(uint8_t ipproto, AppProto alproto, AppLayerStateData *(*GetStateData)(void *state))
Definition: app-layer-parser.c:578
FtpTransferCmd::DFree
void(* DFree)(void *)
Definition: app-layer-ftp.c:435
AppLayerParserRegisterTxDataFunc
void AppLayerParserRegisterTxDataFunc(uint8_t ipproto, AppProto alproto, AppLayerTxData *(*GetTxData)(void *tx))
Definition: app-layer-parser.c:568
Flow_::parent_id
int64_t parent_id
Definition: flow.h:439
FTP_COMMAND_MRCP
@ FTP_COMMAND_MRCP
Definition: app-layer-ftp.h:56
FtpDataState_
Definition: app-layer-ftp.h:172
ParseSizeStringU32
int ParseSizeStringU32(const char *size, uint32_t *res)
Definition: util-misc.c:173
FTP_COMMAND_PWD
@ FTP_COMMAND_PWD
Definition: app-layer-ftp.h:66
util-validate.h
FTP_COMMAND_STRU
@ FTP_COMMAND_STRU
Definition: app-layer-ftp.h:80
StreamingBufferConfig_
Definition: util-streaming-buffer.h:65
FTP_COMMAND_UNKNOWN
@ FTP_COMMAND_UNKNOWN
Definition: app-layer-ftp.h:37
SCLogConfig
struct SCLogConfig_ SCLogConfig
Holds the config state used by the logging api.
FTP_COMMAND_MAIL
@ FTP_COMMAND_MAIL
Definition: app-layer-ftp.h:51
FTP_COMMAND_UMASK
@ FTP_COMMAND_UMASK
Definition: app-layer-ftp.h:83
FtpLineState_::delim_len
uint8_t delim_len
Definition: app-layer-ftp.h:107
str
#define str(s)
Definition: suricata-common.h:291
AppLayerParserRegisterGetTxIterator
void AppLayerParserRegisterGetTxIterator(uint8_t ipproto, AppProto alproto, AppLayerGetTxIteratorFunc Func)
Definition: app-layer-parser.c:511
SCLogError
#define SCLogError(...)
Macro used to log ERROR messages.
Definition: util-debug.h:261
MpmTableElmt_::DestroyCtx
void(* DestroyCtx)(struct MpmCtx_ *)
Definition: util-mpm.h:150
FlowFreeStorageById
void FlowFreeStorageById(Flow *f, FlowStorageId id)
Definition: flow-storage.c:55
FileCloseFile
int FileCloseFile(FileContainer *ffc, const StreamingBufferConfig *sbcfg, const uint8_t *data, uint32_t data_len, uint16_t flags)
Close a File.
Definition: util-file.c:1080
SCFree
#define SCFree(p)
Definition: util-mem.h:61
Flow_::alproto_ts
AppProto alproto_ts
Definition: flow.h:460
Flow_::alstate
void * alstate
Definition: flow.h:485
StreamingBufferConfig_::Free
void(* Free)(void *ptr, size_t size)
Definition: util-streaming-buffer.h:71
AppLayerParserRegisterGetEventInfoById
void AppLayerParserRegisterGetEventInfoById(uint8_t ipproto, AppProto alproto, int(*StateGetEventInfoById)(int event_id, const char **event_name, AppLayerEventType *event_type))
Definition: app-layer-parser.c:534
FtpState_::tx_cnt
uint64_t tx_cnt
Definition: app-layer-ftp.h:150
FtpState_::current_line_truncated_ts
bool current_line_truncated_ts
Definition: app-layer-ftp.h:152
sc_errno
thread_local SCError sc_errno
Definition: util-error.c:31
FTP_STATE_IN_PROGRESS
@ FTP_STATE_IN_PROGRESS
Definition: app-layer-ftp.h:31
ALPROTO_UNKNOWN
@ ALPROTO_UNKNOWN
Definition: app-layer-protos.h:29
ALPROTO_FAILED
@ ALPROTO_FAILED
Definition: app-layer-protos.h:74
mpm_table
MpmTableElmt mpm_table[MPM_TABLE_SIZE]
Definition: util-mpm.c:47
FTP_COMMAND_IDLE
@ FTP_COMMAND_IDLE
Definition: app-layer-ftp.h:49
FTP_STATE_PORT_DONE
@ FTP_STATE_PORT_DONE
Definition: app-layer-ftp.h:32
FtpLineState_::len
uint32_t len
Definition: app-layer-ftp.h:106
AppLayerParserRegisterGetTxCnt
void AppLayerParserRegisterGetTxCnt(uint8_t ipproto, AppProto alproto, uint64_t(*StateGetTxCnt)(void *alstate))
Definition: app-layer-parser.c:489
APP_LAYER_ERROR
#define APP_LAYER_ERROR
Definition: app-layer-parser.h:91
FtpState_::port_line_size
uint32_t port_line_size
Definition: app-layer-ftp.h:158
FTP_COMMAND_RETR
@ FTP_COMMAND_RETR
Definition: app-layer-ftp.h:70
PmqFree
void PmqFree(PrefilterRuleStore *pmq)
Cleanup and free a Pmq.
Definition: util-prefilter.c:126
FTP_MPM
#define FTP_MPM
Definition: app-layer-ftp.c:46
FTPTransaction_::tx_id
uint64_t tx_id
Definition: app-layer-ftp.h:120
FTPTransaction_::dyn_port
uint16_t dyn_port
Definition: app-layer-ftp.h:132
FTPTransaction_::active
bool active
Definition: app-layer-ftp.h:134
FTP_COMMAND_STOR
@ FTP_COMMAND_STOR
Definition: app-layer-ftp.h:78
FtpDataState_::files
FileContainer * files
Definition: app-layer-ftp.h:175
likely
#define likely(expr)
Definition: util-optimize.h:32
FTP_COMMAND_MSOM
@ FTP_COMMAND_MSOM
Definition: app-layer-ftp.h:60
AppLayerParserThreadCtx_
Definition: app-layer-parser.c:59
FTP_COMMAND_EPRT
@ FTP_COMMAND_EPRT
Definition: app-layer-ftp.h:85
FTPString_
Definition: app-layer-ftp.h:111
SC_ATOMIC_GET
#define SC_ATOMIC_GET(name)
Get the value from the atomic variable.
Definition: util-atomic.h:375
MpmCtx_
Definition: util-mpm.h:88
TcpSession_
Definition: stream-tcp-private.h:283
JsonGetNextLineFromBuffer
uint16_t JsonGetNextLineFromBuffer(const char *buffer, const uint16_t len)
Definition: app-layer-ftp.c:1434
util-misc.h
FtpRequestCommand
FtpRequestCommand
Definition: app-layer-ftp.h:36
FileFlowFlagsToFlags
uint16_t FileFlowFlagsToFlags(const uint16_t flow_file_flags, uint8_t direction)
Definition: util-file.c:233
FTPTransaction_
Definition: app-layer-ftp.h:118
FTPThreadCtx
struct FTPThreadCtx_ FTPThreadCtx
AppLayerParserStateIssetFlag
uint16_t AppLayerParserStateIssetFlag(AppLayerParserState *pstate, uint16_t flag)
Definition: app-layer-parser.c:1761
Flow_::alproto_tc
AppProto alproto_tc
Definition: flow.h:461
FtpInput_::buf
const uint8_t * buf
Definition: app-layer-ftp.c:341
Flow_::alproto
AppProto alproto
application level protocol
Definition: flow.h:459
SCCalloc
#define SCCalloc(nm, sz)
Definition: util-mem.h:53
FTP_COMMAND_REST
@ FTP_COMMAND_REST
Definition: app-layer-ftp.h:69
SCReturnInt
#define SCReturnInt(x)
Definition: util-debug.h:275
AppLayerGetTxIterState::un
union AppLayerGetTxIterState::@11 un
MpmAddPatternCI
int MpmAddPatternCI(struct MpmCtx_ *mpm_ctx, uint8_t *pat, uint16_t patlen, uint16_t offset, uint16_t depth, uint32_t pid, SigIntId sid, uint8_t flags)
Definition: util-mpm.c:259
SCMemcmp
#define SCMemcmp(a, b, c)
Definition: util-memcmp.h:290
FTP_COMMAND_PASV
@ FTP_COMMAND_PASV
Definition: app-layer-ftp.h:64
AppLayerProtoDetectConfProtoDetectionEnabled
int AppLayerProtoDetectConfProtoDetectionEnabled(const char *ipproto, const char *alproto)
Given a protocol name, checks if proto detection is enabled in the conf file.
Definition: app-layer-detect-proto.c:1952
FTP_COMMAND_AUTH_TLS
@ FTP_COMMAND_AUTH_TLS
Definition: app-layer-ftp.h:42
SCMutex
#define SCMutex
Definition: threads-debug.h:114
FTPString_::str
uint8_t * str
Definition: app-layer-ftp.h:112
FTPThreadCtx_::ftp_mpm_thread_ctx
MpmThreadCtx * ftp_mpm_thread_ctx
Definition: app-layer-ftp.c:42
DEBUG_VALIDATE_BUG_ON
#define DEBUG_VALIDATE_BUG_ON(exp)
Definition: util-validate.h:102
FtpInput_::consumed
int32_t consumed
Definition: app-layer-ftp.c:342
FTP_COMMAND_NLST
@ FTP_COMMAND_NLST
Definition: app-layer-ftp.h:61
PmqSetup
int PmqSetup(PrefilterRuleStore *pmq)
Setup a pmq.
Definition: util-prefilter.c:37
FTP_COMMAND_MDTM
@ FTP_COMMAND_MDTM
Definition: app-layer-ftp.h:52
FTP_COMMAND_SMNT
@ FTP_COMMAND_SMNT
Definition: app-layer-ftp.h:76
FTP_COMMAND_QUIT
@ FTP_COMMAND_QUIT
Definition: app-layer-ftp.h:67
StreamingBufferConfig_::Realloc
void *(* Realloc)(void *ptr, size_t orig_size, size_t size)
Definition: util-streaming-buffer.h:70
FtpDataState_::file_name
uint8_t * file_name
Definition: app-layer-ftp.h:174
FtpInput_
Definition: app-layer-ftp.c:340
FTP_COMMAND_MLFL
@ FTP_COMMAND_MLFL
Definition: app-layer-ftp.h:54
FtpTransferCmd::file_name
uint8_t * file_name
Definition: app-layer-ftp.c:437
app-layer.h
PrefilterRuleStore_::rule_id_array
SigIntId * rule_id_array
Definition: util-prefilter.h:38