@@ -107,12 +107,10 @@ static struct {
107
107
*/
108
108
int pass ;
109
109
/*
110
- * Some rule commands may temporarily double the length, and we skip a few
111
- * machine words to avoid cache bank conflicts when copying data between the
112
- * buffers. We need three buffers because some rule commands require separate
113
- * input and output buffers and we also need a buffer either for leaving the
114
- * previous mangled word intact for a subsequent comparison (in wordlist mode)
115
- * or for switching between two input words (in "single crack" mode).
110
+ * Some rule commands may temporarily double the length.
111
+ * We need three buffers because some rule commands require separate input and
112
+ * output buffers and we also need a buffer for switching between two input
113
+ * words in "single crack" mode.
116
114
* rules_apply() tries to minimize data copying, and thus it may return a
117
115
* pointer to any of the three buffers.
118
116
*
@@ -576,7 +574,7 @@ int rules_init_stack(char *ruleset, rule_stack *stack_ctx,
576
574
do {
577
575
rule_number ++ ;
578
576
579
- if ((rule = rules_reject (prerule , -1 , NULL , db ))) {
577
+ if ((rule = rules_reject (prerule , -1 , db ))) {
580
578
list_add (stack_ctx -> stack_rule , rule );
581
579
active_rules ++ ;
582
580
@@ -642,7 +640,7 @@ void rules_init(struct db_main *db, int max_length)
642
640
rules_stacked_after = (options .flags & (FLG_RULES_CHK | FLG_SINGLE_CHK | FLG_BATCH_CHK )) && (options .flags & FLG_RULES_STACK_CHK );
643
641
}
644
642
645
- char * rules_reject (char * rule , int split , char * last , struct db_main * db )
643
+ char * rules_reject (char * rule , int split , struct db_main * db )
646
644
{
647
645
static char out_rule [RULE_BUFFER_SIZE ];
648
646
@@ -748,15 +746,15 @@ char *rules_reject(char *rule, int split, char *last, struct db_main *db)
748
746
accept :
749
747
rules_pass -- ;
750
748
strnzcpy (out_rule , rule - 1 , sizeof (out_rule ));
751
- rules_apply (safe_null_string , out_rule , split , last );
749
+ rules_apply (safe_null_string , out_rule , split );
752
750
rules_pass ++ ;
753
751
754
752
return out_rule ;
755
753
}
756
754
757
755
#define STACK_MAXLEN (rules_stacked_after ? RULE_WORD_SIZE : rules_max_length)
758
756
759
- char * rules_apply (char * word_in , char * rule , int split , char * last )
757
+ char * rules_apply (char * word_in , char * rule , int split )
760
758
{
761
759
union {
762
760
char aligned [PLAINTEXT_BUFFER_SIZE ];
@@ -776,8 +774,6 @@ char *rules_apply(char *word_in, char *rule, int split, char *last)
776
774
memory = word = word_in ;
777
775
778
776
in = buffer [0 ][STAGE ];
779
- if (in == last )
780
- in = buffer [2 ][STAGE ];
781
777
782
778
length = 0 ;
783
779
while (length < RULE_WORD_SIZE ) {
@@ -797,8 +793,6 @@ char *rules_apply(char *word_in, char *rule, int split, char *last)
797
793
REJECT
798
794
799
795
alt = buffer [1 ][STAGE ];
800
- if (alt == last )
801
- alt = buffer [2 ][STAGE ];
802
796
803
797
/*
804
798
* This assumes that RULE_WORD_SIZE is small enough that length can't reach or
@@ -1771,22 +1765,6 @@ char *rules_apply(char *word_in, char *rule, int split, char *last)
1771
1765
length = strlen (in );
1772
1766
}
1773
1767
1774
- if (last ) {
1775
- if (length > STACK_MAXLEN )
1776
- length = STACK_MAXLEN ;
1777
- if (length >= ARCH_SIZE - 1 ) {
1778
- if (* (ARCH_WORD * )in != * (ARCH_WORD * )last )
1779
- return in ;
1780
- if (strcmp (& in [ARCH_SIZE - 1 ], & last [ARCH_SIZE - 1 ]))
1781
- return in ;
1782
- return NULL ;
1783
- }
1784
- if (last [length ])
1785
- return in ;
1786
- if (memcmp (in , last , length ))
1787
- return in ;
1788
- return NULL ;
1789
- }
1790
1768
return in ;
1791
1769
1792
1770
out_which :
@@ -1849,11 +1827,6 @@ int rules_advance_stack(rule_stack *ctx, int quiet)
1849
1827
*/
1850
1828
char * rules_process_stack (char * key , rule_stack * ctx )
1851
1829
{
1852
- static union {
1853
- char buf [LINE_BUFFER_SIZE ];
1854
- ARCH_WORD dummy ;
1855
- } aligned ;
1856
- static char * last = aligned .buf ;
1857
1830
char * word ;
1858
1831
1859
1832
if (!ctx -> rule ) {
@@ -1865,8 +1838,7 @@ char *rules_process_stack(char *key, rule_stack *ctx)
1865
1838
1866
1839
rules_stacked_after = 0 ;
1867
1840
1868
- if ((word = rules_apply (key , ctx -> rule -> data , -1 , last )))
1869
- last = word ;
1841
+ word = rules_apply (key , ctx -> rule -> data , -1 );
1870
1842
1871
1843
rules_stacked_after = !!(options .flags & (FLG_RULES_CHK | FLG_SINGLE_CHK | FLG_BATCH_CHK ));
1872
1844
@@ -1878,11 +1850,6 @@ char *rules_process_stack(char *key, rule_stack *ctx)
1878
1850
*/
1879
1851
char * rules_process_stack_all (char * key , rule_stack * ctx )
1880
1852
{
1881
- static union {
1882
- char buf [LINE_BUFFER_SIZE ];
1883
- ARCH_WORD dummy ;
1884
- } aligned ;
1885
- static char * last = aligned .buf ;
1886
1853
char * word ;
1887
1854
1888
1855
if (!ctx -> rule ) {
@@ -1896,10 +1863,8 @@ char *rules_process_stack_all(char *key, rule_stack *ctx)
1896
1863
rules_stacked_after = 0 ;
1897
1864
1898
1865
while (ctx -> rule ) {
1899
- if ((word = rules_apply (key , ctx -> rule -> data , -1 , last ))) {
1900
- last = word ;
1866
+ if ((word = rules_apply (key , ctx -> rule -> data , -1 )))
1901
1867
return word ;
1902
- } else
1903
1868
if ((ctx -> rule = ctx -> rule -> next )) {
1904
1869
rules_stacked_number ++ ;
1905
1870
if (!stack_rules_mute )
@@ -1943,7 +1908,7 @@ static int rules_check(struct rpp_context *start, int split)
1943
1908
1944
1909
rules_pass = -1 ; /* rules_reject() will turn this into -2 */
1945
1910
while ((rule = rpp_next (& ctx ))) {
1946
- rules_reject (rule , split , NULL , NULL );
1911
+ rules_reject (rule , split , NULL );
1947
1912
if (rules_errno ) break ;
1948
1913
1949
1914
if (ctx .input ) rules_line = ctx .input -> number ;
@@ -1981,7 +1946,7 @@ static void rules_load_normalized_list(struct cfg_line *pLine)
1981
1946
/*
1982
1947
* this will 'reduce' the rule by stripping no-op's.
1983
1948
*/
1984
- char * rule = rules_reject (pLine -> data , -1 , NULL , NULL );
1949
+ char * rule = rules_reject (pLine -> data , -1 , NULL );
1985
1950
if (rule ) {
1986
1951
rules_normalize_add_line (rule , pLine -> id );
1987
1952
++ rules_tmp_dup_removal_cnt ;
0 commit comments