suricata
detect-ftp-command-data.c
Go to the documentation of this file.
1/* Copyright (C) 2025 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 *
20 * \author Jeff Lucovsky <jlucovsky@oisf.net>
21 *
22 * Implements the ftp.command_data sticky buffer
23 *
24 */
25
26#include "suricata-common.h"
27#include "detect.h"
28
29#include "detect-parse.h"
30#include "detect-engine.h"
32#include "detect-engine-mpm.h"
35#include "detect-content.h"
36
37#include "flow.h"
38
39#include "util-debug.h"
40
41#include "app-layer.h"
42#include "app-layer-ftp.h"
43
45
46#define KEYWORD_NAME "ftp.command_data"
47#define KEYWORD_DOC "ftp-keywords.html#ftp-command_data"
48#define BUFFER_NAME "ftp.command_data"
49#define BUFFER_DESC "ftp command_data"
50
51static int g_ftp_cmd_data_buffer_id = 0;
52
53static int DetectFtpCommandDataSetup(DetectEngineCtx *de_ctx, Signature *s, const char *str)
54{
55 if (SCDetectBufferSetActiveList(de_ctx, s, g_ftp_cmd_data_buffer_id) < 0)
56 return -1;
57
59 return -1;
60
61 return 0;
62}
63
64static bool DetectFTPCommandDataGetData(
65 const void *txv, const uint8_t _flow_flags, const uint8_t **buffer, uint32_t *buffer_len)
66{
67 FTPTransaction *tx = (FTPTransaction *)txv;
68
69 if (tx->command_descriptor.command_code == FTP_COMMAND_UNKNOWN)
70 return false;
71
72 const char *b;
73 uint8_t b_len;
74 if (SCGetFtpCommandInfo(tx->command_descriptor.command_index, &b, NULL, &b_len)) {
75 if ((tx->request_length - b_len - 1) > 0) {
76 // command data starts here: advance past command + 1 space
77 *buffer = tx->request + b_len + 1;
78 *buffer_len = tx->request_length - b_len - 1;
79 SCLogDebug("command data: \"%s\" [bytes %d]", *buffer, *buffer_len);
80 return true;
81 }
82 }
83
84 *buffer = NULL;
85 *buffer_len = 0;
86 return false;
87}
88
90{
91 /* ftp.command sticky buffer */
94 "sticky buffer to match on the FTP command data buffer";
96 sigmatch_table[DETECT_FTP_COMMAND_DATA].Setup = DetectFtpCommandDataSetup;
98
100 BUFFER_NAME, BUFFER_DESC, ALPROTO_FTP, STREAM_TOSERVER, DetectFTPCommandDataGetData);
101
103
104 g_ftp_cmd_data_buffer_id = DetectBufferTypeGetByName(BUFFER_NAME);
105
106 SCLogDebug("registering " BUFFER_NAME " rule option");
107}
@ ALPROTO_FTP
int SCDetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
int SCDetectHelperBufferMpmRegister(const char *name, const char *desc, AppProto alproto, uint8_t direction, InspectionSingleBufferGetDataPtr GetData)
@ DETECT_FTP_COMMAND_DATA
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
int DetectBufferTypeGetByName(const char *name)
#define KEYWORD_DOC
#define BUFFER_DESC
void DetectFtpCommandDataRegister(void)
#define BUFFER_NAME
#define KEYWORD_NAME
int SCDetectSignatureSetAppProto(Signature *s, AppProto alproto)
SigTableElmt * sigmatch_table
#define SIGMATCH_NOOPT
Definition detect.h:1651
DetectEngineCtx * de_ctx
main detection engine ctx
Definition detect.h:932
FtpCommandInfo command_descriptor
uint8_t * request
uint32_t request_length
uint8_t command_index
FtpRequestCommand command_code
const char * url
Definition detect.h:1462
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition detect.h:1441
uint16_t flags
Definition detect.h:1450
const char * desc
Definition detect.h:1461
const char * name
Definition detect.h:1459
Signature container.
Definition detect.h:668
#define str(s)
#define SCLogDebug(...)
Definition util-debug.h:275