suricata
detect-filemagic.c
Go to the documentation of this file.
1/* Copyright (C) 2007-2023 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 Victor Julien <victor@inliniac.net>
22 *
23 */
24
25#include "suricata-common.h"
26#include "threads.h"
27#include "decode.h"
28
29#include "detect.h"
30#include "detect-parse.h"
31#include "detect-content.h"
32
33#include "detect-engine.h"
35#include "detect-engine-mpm.h"
38#include "detect-engine-file.h"
39
40#include "flow.h"
41#include "flow-var.h"
42#include "flow-util.h"
43
44#include "util-debug.h"
45#include "util-spm-bm.h"
46#include "util-magic.h"
47#include "util-print.h"
48
49#include "util-unittest.h"
51#include "util-profiling.h"
52
53#include "app-layer.h"
54#include "app-layer-parser.h"
55
56#include "stream-tcp.h"
57
58#include "detect-file-data.h"
59#include "detect-filemagic.h"
60
61#include "conf.h"
62
63#ifndef HAVE_MAGIC
64
65static int DetectFilemagicSetupNoSupport (DetectEngineCtx *de_ctx, Signature *s, const char *str)
66{
67 SCLogError("no libmagic support built in, needed for filemagic keyword");
68 return -1;
69}
70
71/**
72 * \brief Registration function for keyword: filemagic
73 */
75{
77 sigmatch_table[DETECT_FILEMAGIC].desc = "match on the information libmagic returns about a file";
78 sigmatch_table[DETECT_FILEMAGIC].url = "/rules/file-keywords.html#filemagic";
79 sigmatch_table[DETECT_FILEMAGIC].Setup = DetectFilemagicSetupNoSupport;
81}
82
83#else /* HAVE_MAGIC */
84
85typedef struct DetectFilemagicThreadData {
86 magic_t ctx;
87} DetectFilemagicThreadData;
88
89static int DetectFilemagicSetup(DetectEngineCtx *, Signature *, const char *);
90static int g_file_match_list_id = 0;
91
92static int DetectFilemagicSetupSticky(DetectEngineCtx *de_ctx, Signature *s, const char *str);
93static int g_file_magic_buffer_id = 0;
94
95static int PrefilterMpmFilemagicRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh,
96 MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id);
97static uint8_t DetectEngineInspectFilemagic(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx,
98 const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags,
99 void *alstate, void *txv, uint64_t tx_id);
100
101/**
102 * \brief Registration function for keyword: filemagic
103 */
105{
106 sigmatch_table[DETECT_FILEMAGIC].name = "filemagic";
107 sigmatch_table[DETECT_FILEMAGIC].desc = "match on the information libmagic returns about a file";
108 sigmatch_table[DETECT_FILEMAGIC].url = "/rules/file-keywords.html#filemagic";
109 sigmatch_table[DETECT_FILEMAGIC].Setup = DetectFilemagicSetup;
112
113 sigmatch_table[DETECT_FILE_MAGIC].name = "file.magic";
114 sigmatch_table[DETECT_FILE_MAGIC].desc = "sticky buffer to match on the file magic";
115 sigmatch_table[DETECT_FILE_MAGIC].url = "/rules/file-keywords.html#filemagic";
116 sigmatch_table[DETECT_FILE_MAGIC].Setup = DetectFilemagicSetupSticky;
119
122 filehandler_table[DETECT_FILE_MAGIC].PrefilterFn = PrefilterMpmFilemagicRegister;
123 filehandler_table[DETECT_FILE_MAGIC].Callback = DetectEngineInspectFilemagic;
124
125 g_file_match_list_id = DetectBufferTypeRegister("files");
126
127 DetectBufferTypeSetDescriptionByName("file.magic", "file magic");
129
130 g_file_magic_buffer_id = DetectBufferTypeGetByName("file.magic");
131 SCLogDebug("registering filemagic rule option");
132}
133
134#define FILEMAGIC_MIN_SIZE 512
135
136/**
137 * \brief run the magic check
138 *
139 * \param file the file
140 *
141 * \retval -1 error
142 * \retval 0 ok
143 */
144int FilemagicThreadLookup(magic_t *ctx, File *file)
145{
146 if (ctx == NULL || file == NULL || FileDataSize(file) == 0) {
147 SCReturnInt(-1);
148 }
149
150 const uint8_t *data = NULL;
151 uint32_t data_len = 0;
152 uint64_t offset = 0;
153
155 &data, &data_len, &offset);
156 if (offset == 0) {
157 if (FileDataSize(file) >= FILEMAGIC_MIN_SIZE) {
158 file->magic = MagicThreadLookup(ctx, data, data_len);
159 } else if (file->state >= FILE_STATE_CLOSED) {
160 file->magic = MagicThreadLookup(ctx, data, data_len);
161 }
162 }
163 SCReturnInt(0);
164}
165
166static void *DetectFilemagicThreadInit(void *data /*@unused@*/)
167{
168 DetectFilemagicThreadData *t = SCCalloc(1, sizeof(DetectFilemagicThreadData));
169 if (unlikely(t == NULL)) {
170 SCLogError("couldn't alloc ctx memory");
171 return NULL;
172 }
173
174 t->ctx = MagicInitContext();
175 if (t->ctx == NULL)
176 goto error;
177
178 return (void *)t;
179
180error:
181 if (t->ctx)
182 magic_close(t->ctx);
183 SCFree(t);
184 return NULL;
185}
186
187static void DetectFilemagicThreadFree(void *ctx)
188{
189 if (ctx != NULL) {
190 DetectFilemagicThreadData *t = (DetectFilemagicThreadData *)ctx;
191 if (t->ctx)
192 magic_close(t->ctx);
193 SCFree(t);
194 }
195}
196
197/**
198 * \brief this function is used to parse filemagic options
199 * \brief into the current signature
200 *
201 * \param de_ctx pointer to the Detection Engine Context
202 * \param s pointer to the Current Signature
203 * \param str pointer to the user provided "filemagic" option
204 *
205 * \retval 0 on Success
206 * \retval -1 on Failure
207 */
208static int DetectFilemagicSetup (DetectEngineCtx *de_ctx, Signature *s, const char *str)
209{
210 if (s->init_data->transforms.cnt) {
211 SCLogError("previous transforms not consumed before 'filemagic'");
212 SCReturnInt(-1);
213 }
216
217 if (DetectContentSetup(de_ctx, s, str) < 0) {
218 return -1;
219 }
220
222 if (sm == NULL)
223 return -1;
224
227 return -1;
229 de_ctx, s, NULL, DETECT_FILE_MAGIC, g_file_magic_buffer_id, s->alproto) < 0)
230 return -1;
231
232 if (de_ctx->filemagic_thread_ctx_id == -1) {
234 de_ctx, "filemagic", DetectFilemagicThreadInit, NULL, DetectFilemagicThreadFree, 1);
236 return -1;
237 }
238 return 0;
239}
240
241/* file.magic implementation */
242
243/**
244 * \brief this function setup the file.magic keyword used in the rule
245 *
246 * \param de_ctx Pointer to the Detection Engine Context
247 * \param s Pointer to the Signature to which the current keyword belongs
248 * \param str Should hold an empty string always
249 *
250 * \retval 0 On success
251 */
252static int DetectFilemagicSetupSticky(DetectEngineCtx *de_ctx, Signature *s, const char *str)
253{
254 if (SCDetectBufferSetActiveList(de_ctx, s, g_file_magic_buffer_id) < 0)
255 return -1;
256
257 if (de_ctx->filemagic_thread_ctx_id == -1) {
259 de_ctx, "filemagic", DetectFilemagicThreadInit, NULL, DetectFilemagicThreadFree, 1);
261 return -1;
262 }
263 return 0;
264}
265
266static InspectionBuffer *FilemagicGetDataCallback(DetectEngineThreadCtx *det_ctx,
267 const DetectEngineTransforms *transforms, Flow *f, uint8_t flow_flags, File *cur_file,
268 int list_id, int local_file_id)
269{
270 SCEnter();
271
272 InspectionBuffer *buffer = InspectionBufferMultipleForListGet(det_ctx, list_id, local_file_id);
273 if (buffer == NULL)
274 return NULL;
275 if (buffer->initialized)
276 return buffer;
277
278 if (cur_file->magic == NULL) {
279 DetectFilemagicThreadData *tfilemagic =
280 (DetectFilemagicThreadData *)DetectThreadCtxGetKeywordThreadCtx(
281 det_ctx, det_ctx->de_ctx->filemagic_thread_ctx_id);
282 if (tfilemagic == NULL) {
284 return NULL;
285 }
286
287 FilemagicThreadLookup(&tfilemagic->ctx, cur_file);
288 }
289 if (cur_file->magic == NULL) {
290 return NULL;
291 }
292
293 const uint8_t *data = (const uint8_t *)cur_file->magic;
294 uint32_t data_len = (uint32_t)strlen(cur_file->magic);
295
296 InspectionBufferSetupMulti(det_ctx, buffer, transforms, data, data_len);
297
298 SCReturnPtr(buffer, "InspectionBuffer");
299}
300
301static uint8_t DetectEngineInspectFilemagic(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx,
302 const DetectEngineAppInspectionEngine *engine, const Signature *s, Flow *f, uint8_t flags,
303 void *alstate, void *txv, uint64_t tx_id)
304{
305 const DetectEngineTransforms *transforms = NULL;
306 if (!engine->mpm) {
307 transforms = engine->v2.transforms;
308 }
309
311 FileContainer *ffc = files.fc;
312 if (ffc == NULL || ffc->head == NULL) {
313 const bool eof = (AppLayerParserGetStateProgress(f->proto, f->alproto, txv, flags) >
314 engine->progress);
315 if (eof && engine->match_on_null) {
317 }
318 if (ffc != NULL) {
320 }
322 }
323
325 int local_file_id = 0;
326 for (File *file = ffc->head; file != NULL; file = file->next) {
327 InspectionBuffer *buffer = FilemagicGetDataCallback(
328 det_ctx, transforms, f, flags, file, engine->sm_list, local_file_id);
329 if (buffer == NULL) {
330 local_file_id++;
331 continue;
332 }
333
334 const bool match = DetectEngineContentInspection(de_ctx, det_ctx, s, engine->smd, NULL, f,
335 buffer->inspect, buffer->inspect_len, buffer->inspect_offset,
337 if (match) {
339 } else {
341 }
342 local_file_id++;
343 }
344 return r;
345}
346
347typedef struct PrefilterMpmFilemagic {
348 int list_id;
349 const MpmCtx *mpm_ctx;
350 const DetectEngineTransforms *transforms;
351} PrefilterMpmFilemagic;
352
353/** \brief Filedata Filedata Mpm prefilter callback
354 *
355 * \param det_ctx detection engine thread ctx
356 * \param p packet to inspect
357 * \param f flow to inspect
358 * \param txv tx to inspect
359 * \param pectx inspection context
360 */
361static void PrefilterTxFilemagic(DetectEngineThreadCtx *det_ctx, const void *pectx, Packet *p,
362 Flow *f, void *txv, const uint64_t idx, const AppLayerTxData *txd, const uint8_t flags)
363{
364 SCEnter();
365
367 return;
368
369 const PrefilterMpmFilemagic *ctx = (const PrefilterMpmFilemagic *)pectx;
370 const MpmCtx *mpm_ctx = ctx->mpm_ctx;
371 const int list_id = ctx->list_id;
372
374 FileContainer *ffc = files.fc;
375 if (ffc != NULL) {
376 int local_file_id = 0;
377 for (File *file = ffc->head; file != NULL; file = file->next) {
378 InspectionBuffer *buffer = FilemagicGetDataCallback(
379 det_ctx, ctx->transforms, f, flags, file, list_id, local_file_id);
380 if (buffer == NULL)
381 continue;
382
383 if (buffer->inspect_len >= mpm_ctx->minlen) {
384 (void)mpm_table[mpm_ctx->mpm_type].Search(mpm_ctx, &det_ctx->mtc, &det_ctx->pmq,
385 buffer->inspect, buffer->inspect_len);
387 }
388 local_file_id++;
389 }
390 }
391}
392
393static void PrefilterMpmFilemagicFree(void *ptr)
394{
395 SCFree(ptr);
396}
397
398static int PrefilterMpmFilemagicRegister(DetectEngineCtx *de_ctx, SigGroupHead *sgh,
399 MpmCtx *mpm_ctx, const DetectBufferMpmRegistry *mpm_reg, int list_id)
400{
401 PrefilterMpmFilemagic *pectx = SCCalloc(1, sizeof(*pectx));
402 if (pectx == NULL)
403 return -1;
404 pectx->list_id = list_id;
405 pectx->mpm_ctx = mpm_ctx;
406 pectx->transforms = &mpm_reg->transforms;
407
408 return PrefilterAppendTxEngine(de_ctx, sgh, PrefilterTxFilemagic,
409 mpm_reg->app_v2.alproto, mpm_reg->app_v2.tx_min_progress,
410 pectx, PrefilterMpmFilemagicFree, mpm_reg->pname);
411}
412
413#endif /* HAVE_MAGIC */
AppLayerGetFileState AppLayerParserGetTxFiles(const Flow *f, void *tx, const uint8_t direction)
int AppLayerParserGetStateProgress(uint8_t ipproto, AppProto alproto, void *alstate, uint8_t flags)
get the progress value for a tx/protocol
struct AppLayerGetFileState AppLayerGetFileState
struct AppLayerTxData AppLayerTxData
#define AppLayerParserHasFilesInDir(txd, direction)
check if tx (possibly) has files in this tx for the direction
uint8_t flags
Definition decode-gre.h:0
int DetectContentSetup(DetectEngineCtx *de_ctx, Signature *s, const char *contentstr)
Function to setup a content pattern.
int DetectContentConvertToNocase(DetectEngineCtx *de_ctx, DetectContentData *cd)
int SCDetectBufferSetActiveList(DetectEngineCtx *de_ctx, Signature *s, const int list)
bool DetectEngineContentInspection(DetectEngineCtx *de_ctx, DetectEngineThreadCtx *det_ctx, const Signature *s, const SigMatchData *smd, Packet *p, Flow *f, const uint8_t *buffer, const uint32_t buffer_len, const uint64_t stream_start_offset, const uint8_t flags, const enum DetectContentInspectionType inspection_mode)
wrapper around DetectEngineContentInspectionInternal to return true/false only
@ DETECT_ENGINE_CONTENT_INSPECTION_MODE_STATE
#define DETECT_CI_FLAGS_SINGLE
void InspectionBufferSetupMultiEmpty(InspectionBuffer *buffer)
setup the buffer empty
InspectionBuffer * InspectionBufferMultipleForListGet(DetectEngineThreadCtx *det_ctx, const int list_id, const uint32_t local_id)
for a InspectionBufferMultipleForList get a InspectionBuffer
void InspectionBufferSetupMulti(DetectEngineThreadCtx *det_ctx, InspectionBuffer *buffer, const DetectEngineTransforms *transforms, const uint8_t *data, const uint32_t data_len)
setup the buffer with our initial data
int PrefilterAppendTxEngine(DetectEngineCtx *de_ctx, SigGroupHead *sgh, PrefilterTxFn PrefilterTxFunc, AppProto alproto, int tx_min_progress, void *pectx, void(*FreeFunc)(void *pectx), const char *name)
@ DETECT_FILE_MAGIC
#define DETECT_ENGINE_INSPECT_SIG_MATCH
#define DETECT_ENGINE_INSPECT_SIG_CANT_MATCH_FILES
#define DETECT_ENGINE_INSPECT_SIG_NO_MATCH
void * DetectThreadCtxGetKeywordThreadCtx(DetectEngineThreadCtx *det_ctx, int id)
Retrieve thread local keyword ctx by id.
int DetectBufferTypeRegister(const char *name)
int DetectRegisterThreadCtxFuncs(DetectEngineCtx *de_ctx, const char *name, void *(*InitFunc)(void *), void *data, void(*FreeFunc)(void *), int mode)
Register Thread keyword context Funcs.
void DetectBufferTypeSetDescriptionByName(const char *name, const char *desc)
void DetectBufferTypeSupportsMultiInstance(const char *name)
int DetectBufferTypeGetByName(const char *name)
DetectFileHandlerTableElmt filehandler_table[DETECT_TBLSIZE_STATIC]
void DetectFilemagicRegister(void)
Registration function for keyword: filemagic.
int DetectEngineContentModifierBufferSetup(DetectEngineCtx *de_ctx, Signature *s, const char *arg, int sm_type, int sm_list, AppProto alproto)
SigMatch * DetectGetLastSMFromLists(const Signature *s,...)
Returns the sm with the largest index (added latest) from the lists passed to us.
SigTableElmt * sigmatch_table
#define SIGMATCH_SUPPORT_DIR
Definition detect.h:1684
#define FILE_SIG_NEED_MAGIC
Definition detect.h:322
#define DETECT_SM_LIST_NOTSET
Definition detect.h:144
#define SIGMATCH_INFO_STICKY_BUFFER
Definition detect.h:1676
#define FILE_SIG_NEED_FILE
Definition detect.h:320
#define SIGMATCH_QUOTES_MANDATORY
Definition detect.h:1668
#define SIGMATCH_OPTIONAL_OPT
Definition detect.h:1661
#define SIGMATCH_HANDLE_NEGATION
Definition detect.h:1672
DetectEngineCtx * de_ctx
struct Thresholds ctx
one time registration of keywords at start up
Definition detect.h:762
DetectEngineTransforms transforms
Definition detect.h:775
struct DetectBufferMpmRegistry_::@98::@100 app_v2
const DetectEngineTransforms * transforms
Definition detect.h:436
struct DetectEngineAppInspectionEngine_::@90 v2
main detection engine ctx
Definition detect.h:932
int filemagic_thread_ctx_id
Definition detect.h:982
MpmThreadCtx mtc
Definition detect.h:1345
DetectEngineCtx * de_ctx
Definition detect.h:1364
PrefilterRuleStore pmq
Definition detect.h:1349
PrefilterRegisterFunc PrefilterFn
InspectEngineFuncPtr Callback
StreamingBuffer * sb
Definition util-file.h:83
FileState state
Definition util-file.h:82
struct File_ * next
Definition util-file.h:92
Flow data structure.
Definition flow.h:356
uint8_t proto
Definition flow.h:378
AppProto alproto
application level protocol
Definition flow.h:450
uint8_t mpm_type
Definition util-mpm.h:95
uint16_t minlen
Definition util-mpm.h:104
uint32_t(* Search)(const struct MpmCtx_ *, struct MpmThreadCtx_ *, PrefilterRuleStore *, const uint8_t *, uint32_t)
Definition util-mpm.h:178
Container for matching data for a signature group.
Definition detect.h:1629
a single match condition for a signature
Definition detect.h:356
SigMatchCtx * ctx
Definition detect.h:359
const char * url
Definition detect.h:1462
int(* Setup)(DetectEngineCtx *, Signature *, const char *)
Definition detect.h:1441
uint16_t alternative
Definition detect.h:1457
uint16_t flags
Definition detect.h:1450
const char * desc
Definition detect.h:1461
const char * name
Definition detect.h:1459
DetectEngineTransforms transforms
Definition detect.h:631
Signature container.
Definition detect.h:668
SignatureInitData * init_data
Definition detect.h:747
AppProto alproto
Definition detect.h:673
uint8_t file_flags
Definition detect.h:684
#define str(s)
#define SCEnter(...)
Definition util-debug.h:277
#define SCLogDebug(...)
Definition util-debug.h:275
#define SCReturnInt(x)
Definition util-debug.h:281
#define SCReturnPtr(x, type)
Definition util-debug.h:293
#define SCLogError(...)
Macro used to log ERROR messages.
Definition util-debug.h:267
uint64_t FileDataSize(const File *file)
get the size of the file data
Definition util-file.c:309
@ FILE_STATE_CLOSED
Definition util-file.h:71
#define SCFree(p)
Definition util-mem.h:61
#define SCCalloc(nm, sz)
Definition util-mem.h:53
MpmTableElmt mpm_table[MPM_TABLE_SIZE]
Definition util-mpm.c:47
#define unlikely(expr)
#define PREFILTER_PROFILING_ADD_BYTES(det_ctx, bytes)
int StreamingBufferGetData(const StreamingBuffer *sb, const uint8_t **data, uint32_t *data_len, uint64_t *stream_offset)
uint64_t offset