forked from Velocidex/go-yara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscan.c
938 lines (764 loc) · 24 KB
/
scan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
/*
Copyright (c) 2014. The YARA Authors. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <assert.h>
#include <stdlib.h>
#include <ctype.h>
#include <yara_globals.h>
#include <yara_limits.h>
#include <yara_utils.h>
#include <yara_re.h>
#include <yara_types.h>
#include <yara_error.h>
#include <yara_libyara.h>
#include <yara_scan.h>
#include <yara_stopwatch.h>
typedef struct _CALLBACK_ARGS
{
YR_STRING* string;
YR_SCAN_CONTEXT* context;
const uint8_t* data;
size_t data_size;
uint64_t data_base;
int forward_matches;
int full_word;
} CALLBACK_ARGS;
static int _yr_scan_xor_compare(
const uint8_t* data,
size_t data_size,
uint8_t* string,
size_t string_length)
{
const uint8_t* s1 = data;
const uint8_t* s2 = string;
uint8_t k = 0;
size_t i = 0;
if (data_size < string_length)
return 0;
// Calculate the xor key to compare with. *s1 is the start of the string we
// matched on and *s2 is the "plaintext" string, so *s1 ^ *s2 is the key to
// every *s2 as we compare.
k = *s1 ^ *s2;
while (i < string_length && *s1++ == ((*s2++) ^ k))
i++;
return (int) ((i == string_length) ? i : 0);
}
static int _yr_scan_xor_wcompare(
const uint8_t* data,
size_t data_size,
uint8_t* string,
size_t string_length)
{
const uint8_t* s1 = data;
const uint8_t* s2 = string;
uint8_t k = 0;
size_t i = 0;
if (data_size < string_length * 2)
return 0;
// Calculate the xor key to compare with. *s1 is the start of the string we
// matched on and *s2 is the "plaintext" string, so *s1 ^ *s2 is the key to
// every *s2 as we compare.
k = *s1 ^ *s2;
while (i < string_length && *s1 == ((*s2) ^ k) && ((*(s1 + 1)) ^ k) == 0x00)
{
s1+=2;
s2++;
i++;
}
return (int) ((i == string_length) ? i * 2 : 0);
}
static int _yr_scan_compare(
const uint8_t* data,
size_t data_size,
uint8_t* string,
size_t string_length)
{
const uint8_t* s1 = data;
const uint8_t* s2 = string;
size_t i = 0;
if (data_size < string_length)
return 0;
while (i < string_length && *s1++ == *s2++)
i++;
return (int) ((i == string_length) ? i : 0);
}
static int _yr_scan_icompare(
const uint8_t* data,
size_t data_size,
uint8_t* string,
size_t string_length)
{
const uint8_t* s1 = data;
const uint8_t* s2 = string;
size_t i = 0;
if (data_size < string_length)
return 0;
while (i < string_length && yr_lowercase[*s1++] == yr_lowercase[*s2++])
i++;
return (int) ((i == string_length) ? i : 0);
}
static int _yr_scan_wcompare(
const uint8_t* data,
size_t data_size,
uint8_t* string,
size_t string_length)
{
const uint8_t* s1 = data;
const uint8_t* s2 = string;
size_t i = 0;
if (data_size < string_length * 2)
return 0;
while (i < string_length && *s1 == *s2 && *(s1 + 1) == 0x00)
{
s1+=2;
s2++;
i++;
}
return (int) ((i == string_length) ? i * 2 : 0);
}
static int _yr_scan_wicompare(
const uint8_t* data,
size_t data_size,
uint8_t* string,
size_t string_length)
{
const uint8_t* s1 = data;
const uint8_t* s2 = string;
size_t i = 0;
if (data_size < string_length * 2)
return 0;
while (i < string_length &&
yr_lowercase[*s1] == yr_lowercase[*s2] &&
*(s1 + 1) == 0x00)
{
s1+=2;
s2++;
i++;
}
return (int) ((i == string_length) ? i * 2 : 0);
}
static void _yr_scan_update_match_chain_length(
int tidx,
YR_STRING* string,
YR_MATCH* match_to_update,
int chain_length)
{
YR_MATCH* match;
if (match_to_update->chain_length == chain_length)
return;
match_to_update->chain_length = chain_length;
if (string->chained_to == NULL)
return;
match = string->chained_to->unconfirmed_matches[tidx].head;
while (match != NULL)
{
int64_t ending_offset = match->offset + match->match_length;
if (ending_offset + string->chain_gap_max >= match_to_update->offset &&
ending_offset + string->chain_gap_min <= match_to_update->offset)
{
_yr_scan_update_match_chain_length(
tidx, string->chained_to, match, chain_length + 1);
}
match = match->next;
}
}
static int _yr_scan_add_match_to_list(
YR_MATCH* match,
YR_MATCHES* matches_list,
int replace_if_exists)
{
YR_MATCH* insertion_point = matches_list->tail;
if (matches_list->count == YR_MAX_STRING_MATCHES)
return ERROR_TOO_MANY_MATCHES;
while (insertion_point != NULL)
{
if (match->offset == insertion_point->offset)
{
if (replace_if_exists)
{
insertion_point->match_length = match->match_length;
insertion_point->data_length = match->data_length;
insertion_point->data = match->data;
}
return ERROR_SUCCESS;
}
if (match->offset > insertion_point->offset)
break;
insertion_point = insertion_point->prev;
}
match->prev = insertion_point;
if (insertion_point != NULL)
{
match->next = insertion_point->next;
insertion_point->next = match;
}
else
{
match->next = matches_list->head;
matches_list->head = match;
}
matches_list->count++;
if (match->next != NULL)
match->next->prev = match;
else
matches_list->tail = match;
return ERROR_SUCCESS;
}
static void _yr_scan_remove_match_from_list(
YR_MATCH* match,
YR_MATCHES* matches_list)
{
if (match->prev != NULL)
match->prev->next = match->next;
if (match->next != NULL)
match->next->prev = match->prev;
if (matches_list->head == match)
matches_list->head = match->next;
if (matches_list->tail == match)
matches_list->tail = match->prev;
matches_list->count--;
match->next = NULL;
match->prev = NULL;
}
//
// _yr_scan_verify_chained_string_match
//
// Given a string that is part of a string chain and is matching at some
// point in the scanned data, this function determines if the whole string
// chain is also matching. For example, if the string S was splitted and
// converted in a chain S1 <- S2 <- S3 (see yr_re_ast_split_at_chaining_point),
// and a match for S3 was found, this functions finds out if there are matches
// for S1 and S2 that together with the match found for S3 conform a match for
// the whole S.
//
// Notice that this function operates in a non-greedy fashion. Matches found
// for S will be the shortest possible ones.
//
static int _yr_scan_verify_chained_string_match(
YR_STRING* matching_string,
YR_SCAN_CONTEXT* context,
const uint8_t* match_data,
uint64_t match_base,
uint64_t match_offset,
int32_t match_length)
{
YR_STRING* string;
YR_MATCH* match;
YR_MATCH* next_match;
YR_MATCH* new_match;
uint64_t lowest_offset;
uint64_t ending_offset;
int32_t full_chain_length;
int tidx = context->tidx;
bool add_match = false;
if (matching_string->chained_to == NULL)
{
// The matching string is the head of the chain, this match should be
// added to the list of unconfirmed matches. The match will remain
// unconfirmed until all the strings in the chain are found with the
// correct distances bewteen them.
add_match = true;
}
else
{
// If some unconfirmed match exists, the lowest possible offset where the
// whole string chain can match is the offset of the first string in the
// list of unconfirmed matches. Unconfirmed matches are sorted in ascending
// offset order. If no unconfirmed match exists, the lowest possible offset
// is the offset of the current match.
if (matching_string->unconfirmed_matches[tidx].head != NULL)
lowest_offset = matching_string->unconfirmed_matches[tidx].head->offset;
else
lowest_offset = match_offset;
// Iterate over the list of unconfirmed matches for the string that
// preceeds the currently matching string. If we have a string chain like:
// S1 <- S2 <- S3, and we just found a match for S2, we are iterating the
// list of unconfirmed matches of S1.
match = matching_string->chained_to->unconfirmed_matches[tidx].head;
while (match != NULL)
{
// Store match->next so that we can use it later for advancing in the
// list, if _yr_scan_remove_match_from_list is called, match->next is
// set to NULL, that's why we store its current value before that happens.
next_match = match->next;
// The unconfirmed match starts at match->offset and finishes at
// ending_offset.
ending_offset = match->offset + match->match_length;
if (ending_offset + matching_string->chain_gap_max < lowest_offset)
{
// If the current match is too far away from the unconfirmed match,
// remove the unconfirmed match from the list because it has been
// negatively confirmed (i.e: we can be sure that this unconfirmed
// match can't be an actual match)
_yr_scan_remove_match_from_list(
match, &matching_string->chained_to->unconfirmed_matches[tidx]);
}
else if (ending_offset + matching_string->chain_gap_max >= match_offset &&
ending_offset + matching_string->chain_gap_min <= match_offset)
{
// If the distance between the end of the unconfirmed match and the
// start of the current match is within the range specified in the
// regexp or hex string, this could be an actual match.
add_match = true;
break;
}
match = next_match;
}
}
if (add_match)
{
uint32_t max_match_data;
FAIL_ON_ERROR(yr_get_configuration(
YR_CONFIG_MAX_MATCH_DATA,
&max_match_data))
if (STRING_IS_CHAIN_TAIL(matching_string))
{
// The matching string is the tail of the string chain. It must be
// chained to some other string.
assert(matching_string->chained_to != NULL);
// Iterate over the list of unconfirmed matches of the preceeding string
// in the chain and update the chain_length field for each of them. This
// is a recursive operation that will update the chain_length field for
// every unconfirmed match in all the strings in the chain up to the head
// of the chain.
match = matching_string->chained_to->unconfirmed_matches[tidx].head;
while (match != NULL)
{
ending_offset = match->offset + match->match_length;
if (ending_offset + matching_string->chain_gap_max >= match_offset &&
ending_offset + matching_string->chain_gap_min <= match_offset)
{
_yr_scan_update_match_chain_length(
tidx, matching_string->chained_to, match, 1);
}
match = match->next;
}
full_chain_length = 0;
string = matching_string;
while(string->chained_to != NULL)
{
full_chain_length++;
string = string->chained_to;
}
// "string" points now to the head of the strings chain.
match = string->unconfirmed_matches[tidx].head;
// Iterate over the list of unconfirmed matches of the head of the chain,
// and move to the list of confirmed matches those with a chain_length
// equal to full_chain_length, which means that the whole chain has been
// confirmed to match.
while (match != NULL)
{
next_match = match->next;
if (match->chain_length == full_chain_length)
{
_yr_scan_remove_match_from_list(
match, &string->unconfirmed_matches[tidx]);
match->match_length = (int32_t) \
(match_offset - match->offset + match_length);
match->data_length = yr_min(match->match_length, max_match_data);
FAIL_ON_ERROR(yr_arena_write_data(
context->matches_arena,
match_data - match_offset + match->offset,
match->data_length,
(void**) &match->data));
FAIL_ON_ERROR(_yr_scan_add_match_to_list(
match,
!STRING_IS_PRIVATE(string) ?
&string->matches[tidx] :
&string->private_matches[tidx],
false));
}
match = next_match;
}
}
else // It's a part of a chain, but not the tail.
{
// If this is the first match for the string, put the string in the
// list of strings whose flags needs to be cleared after the scan.
if (matching_string->matches[tidx].count == 0 &&
matching_string->private_matches[tidx].count == 0 &&
matching_string->unconfirmed_matches[tidx].count == 0)
{
FAIL_ON_ERROR(yr_arena_write_data(
context->matching_strings_arena,
&matching_string,
sizeof(matching_string),
NULL));
}
FAIL_ON_ERROR(yr_arena_allocate_memory(
context->matches_arena,
sizeof(YR_MATCH),
(void**) &new_match));
new_match->base = match_base;
new_match->offset = match_offset;
new_match->match_length = match_length;
new_match->chain_length = 0;
new_match->prev = NULL;
new_match->next = NULL;
// A copy of the matching data is written to the matches_arena, the
// amount of data copies is limited by YR_CONFIG_MAX_MATCH_DATA.
new_match->data_length = yr_min(match_length, max_match_data);
if (new_match->data_length > 0)
{
FAIL_ON_ERROR(yr_arena_write_data(
context->matches_arena,
match_data,
new_match->data_length,
(void**) &new_match->data));
}
else
{
new_match->data = NULL;
}
// Add the match to the list of unconfirmed matches because the string
// is part of a chain but not its tail, so we can't be sure the this is
// an actual match until finding the remaining parts of the chain.
FAIL_ON_ERROR(_yr_scan_add_match_to_list(
new_match,
&matching_string->unconfirmed_matches[tidx],
false));
}
}
return ERROR_SUCCESS;
}
static int _yr_scan_match_callback(
const uint8_t* match_data,
int32_t match_length,
int flags,
void* args)
{
CALLBACK_ARGS* callback_args = (CALLBACK_ARGS*) args;
YR_STRING* string = callback_args->string;
YR_MATCH* new_match;
int result = ERROR_SUCCESS;
int tidx = callback_args->context->tidx;
size_t match_offset = match_data - callback_args->data;
// total match length is the sum of backward and forward matches.
match_length += callback_args->forward_matches;
// make sure that match fits into the data.
assert(match_offset + match_length <= callback_args->data_size);
if (callback_args->full_word)
{
if (flags & RE_FLAGS_WIDE)
{
if (match_offset >= 2 &&
*(match_data - 1) == 0 &&
isalnum(*(match_data - 2)))
return ERROR_SUCCESS;
if (match_offset + match_length + 1 < callback_args->data_size &&
*(match_data + match_length + 1) == 0 &&
isalnum(*(match_data + match_length)))
return ERROR_SUCCESS;
}
else
{
if (match_offset >= 1 &&
isalnum(*(match_data - 1)))
return ERROR_SUCCESS;
if (match_offset + match_length < callback_args->data_size &&
isalnum(*(match_data + match_length)))
return ERROR_SUCCESS;
}
}
if (STRING_IS_CHAIN_PART(string))
{
result = _yr_scan_verify_chained_string_match(
string,
callback_args->context,
match_data,
callback_args->data_base,
match_offset,
match_length);
}
else
{
uint32_t max_match_data;
FAIL_ON_ERROR(yr_get_configuration(
YR_CONFIG_MAX_MATCH_DATA,
&max_match_data))
if (string->matches[tidx].count == 0)
{
// If this is the first match for the string, put the string in the
// list of strings whose flags needs to be cleared after the scan.
FAIL_ON_ERROR(yr_arena_write_data(
callback_args->context->matching_strings_arena,
&string,
sizeof(string),
NULL));
}
FAIL_ON_ERROR(yr_arena_allocate_memory(
callback_args->context->matches_arena,
sizeof(YR_MATCH),
(void**) &new_match));
new_match->data_length = yr_min(match_length, max_match_data);
if (new_match->data_length > 0)
{
FAIL_ON_ERROR(yr_arena_write_data(
callback_args->context->matches_arena,
match_data,
new_match->data_length,
(void**) &new_match->data));
}
else
{
new_match->data = NULL;
}
if (result == ERROR_SUCCESS)
{
new_match->base = callback_args->data_base;
new_match->offset = match_offset;
new_match->match_length = match_length;
new_match->prev = NULL;
new_match->next = NULL;
FAIL_ON_ERROR(_yr_scan_add_match_to_list(
new_match,
!STRING_IS_PRIVATE(string) ? &string->matches[tidx] : &string->private_matches[tidx],
STRING_IS_GREEDY_REGEXP(string)));
}
}
return result;
}
typedef int (*RE_EXEC_FUNC)(
YR_SCAN_CONTEXT* context,
const uint8_t* code,
const uint8_t* input,
size_t input_forwards_size,
size_t input_backwards_size,
int flags,
RE_MATCH_CALLBACK_FUNC callback,
void* callback_args,
int* matches);
static int _yr_scan_verify_re_match(
YR_SCAN_CONTEXT* context,
YR_AC_MATCH* ac_match,
const uint8_t* data,
size_t data_size,
uint64_t data_base,
size_t offset)
{
CALLBACK_ARGS callback_args;
RE_EXEC_FUNC exec;
int forward_matches = -1;
int backward_matches = -1;
int flags = 0;
if (STRING_IS_GREEDY_REGEXP(ac_match->string))
flags |= RE_FLAGS_GREEDY;
if (STRING_IS_NO_CASE(ac_match->string))
flags |= RE_FLAGS_NO_CASE;
if (STRING_IS_DOT_ALL(ac_match->string))
flags |= RE_FLAGS_DOT_ALL;
if (STRING_IS_FAST_REGEXP(ac_match->string))
exec = yr_re_fast_exec;
else
exec = yr_re_exec;
if (STRING_IS_ASCII(ac_match->string))
{
FAIL_ON_ERROR(exec(
context,
ac_match->forward_code,
data + offset,
data_size - offset,
offset,
flags,
NULL,
NULL,
&forward_matches));
}
if (STRING_IS_WIDE(ac_match->string) && forward_matches == -1)
{
flags |= RE_FLAGS_WIDE;
FAIL_ON_ERROR(exec(
context,
ac_match->forward_code,
data + offset,
data_size - offset,
offset,
flags,
NULL,
NULL,
&forward_matches));
}
if (forward_matches == -1)
return ERROR_SUCCESS;
if (forward_matches == 0 && ac_match->backward_code == NULL)
return ERROR_SUCCESS;
callback_args.string = ac_match->string;
callback_args.context = context;
callback_args.data = data;
callback_args.data_size = data_size;
callback_args.data_base = data_base;
callback_args.forward_matches = forward_matches;
callback_args.full_word = STRING_IS_FULL_WORD(ac_match->string);
if (ac_match->backward_code != NULL)
{
FAIL_ON_ERROR(exec(
context,
ac_match->backward_code,
data + offset,
data_size - offset,
offset,
flags | RE_FLAGS_BACKWARDS | RE_FLAGS_EXHAUSTIVE,
_yr_scan_match_callback,
(void*) &callback_args,
&backward_matches));
}
else
{
FAIL_ON_ERROR(_yr_scan_match_callback(
data + offset, 0, flags, &callback_args));
}
return ERROR_SUCCESS;
}
static int _yr_scan_verify_literal_match(
YR_SCAN_CONTEXT* context,
YR_AC_MATCH* ac_match,
const uint8_t* data,
size_t data_size,
uint64_t data_base,
size_t offset)
{
int flags = 0;
int forward_matches = 0;
CALLBACK_ARGS callback_args;
YR_STRING* string = ac_match->string;
if (STRING_FITS_IN_ATOM(string))
{
forward_matches = ac_match->backtrack;
}
else if (STRING_IS_NO_CASE(string))
{
if (STRING_IS_ASCII(string))
{
forward_matches = _yr_scan_icompare(
data + offset,
data_size - offset,
string->string,
string->length);
}
if (STRING_IS_WIDE(string) && forward_matches == 0)
{
forward_matches = _yr_scan_wicompare(
data + offset,
data_size - offset,
string->string,
string->length);
}
}
else
{
if (STRING_IS_ASCII(string))
{
forward_matches = _yr_scan_compare(
data + offset,
data_size - offset,
string->string,
string->length);
}
if (STRING_IS_WIDE(string) && forward_matches == 0)
{
forward_matches = _yr_scan_wcompare(
data + offset,
data_size - offset,
string->string,
string->length);
}
if (STRING_IS_XOR(string) && forward_matches == 0)
{
if (STRING_IS_WIDE(string))
{
forward_matches = _yr_scan_xor_wcompare(
data + offset,
data_size - offset,
string->string,
string->length);
}
if (forward_matches == 0)
{
forward_matches = _yr_scan_xor_compare(
data + offset,
data_size - offset,
string->string,
string->length);
}
}
}
if (forward_matches == 0)
return ERROR_SUCCESS;
if (forward_matches == string->length * 2)
flags |= RE_FLAGS_WIDE;
if (STRING_IS_NO_CASE(string))
flags |= RE_FLAGS_NO_CASE;
callback_args.context = context;
callback_args.string = string;
callback_args.data = data;
callback_args.data_size = data_size;
callback_args.data_base = data_base;
callback_args.forward_matches = forward_matches;
callback_args.full_word = STRING_IS_FULL_WORD(string);
FAIL_ON_ERROR(_yr_scan_match_callback(
data + offset, 0, flags, &callback_args));
return ERROR_SUCCESS;
}
int yr_scan_verify_match(
YR_SCAN_CONTEXT* context,
YR_AC_MATCH* ac_match,
const uint8_t* data,
size_t data_size,
uint64_t data_base,
size_t offset)
{
YR_STRING* string = ac_match->string;
int result;
if (data_size - offset <= 0)
return ERROR_SUCCESS;
if (STRING_IS_DISABLED(string))
return ERROR_SUCCESS;
if (context->flags & SCAN_FLAGS_FAST_MODE &&
STRING_IS_SINGLE_MATCH(string) &&
string->matches[context->tidx].head != NULL)
return ERROR_SUCCESS;
if (STRING_IS_FIXED_OFFSET(string) &&
string->fixed_offset != data_base + offset)
return ERROR_SUCCESS;
#ifdef PROFILING_ENABLED
uint64_t start_time = yr_stopwatch_elapsed_us(&context->stopwatch);
#endif
if (STRING_IS_LITERAL(string))
{
result = _yr_scan_verify_literal_match(
context, ac_match, data, data_size, data_base, offset);
}
else
{
result = _yr_scan_verify_re_match(
context, ac_match, data, data_size, data_base, offset);
}
if (result != ERROR_SUCCESS)
context->last_error_string = string;
#ifdef PROFILING_ENABLED
uint64_t finish_time = yr_stopwatch_elapsed_us(&context->stopwatch);
string->rule->time_cost_per_thread[context->tidx] += (
finish_time - start_time);
#endif
return result;
}