]> asedeno.scripts.mit.edu Git - linux.git/blob - kernel/trace/trace_events_filter.c
Merge tag 'powerpc-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux
[linux.git] / kernel / trace / trace_events_filter.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * trace_events_filter - generic event filtering
4  *
5  * Copyright (C) 2009 Tom Zanussi <tzanussi@gmail.com>
6  */
7
8 #include <linux/module.h>
9 #include <linux/ctype.h>
10 #include <linux/mutex.h>
11 #include <linux/perf_event.h>
12 #include <linux/slab.h>
13
14 #include "trace.h"
15 #include "trace_output.h"
16
17 #define DEFAULT_SYS_FILTER_MESSAGE                                      \
18         "### global filter ###\n"                                       \
19         "# Use this to set filters for multiple events.\n"              \
20         "# Only events with the given fields will be affected.\n"       \
21         "# If no events are modified, an error message will be displayed here"
22
23 /* Due to token parsing '<=' must be before '<' and '>=' must be before '>' */
24 #define OPS                                     \
25         C( OP_GLOB,     "~"  ),                 \
26         C( OP_NE,       "!=" ),                 \
27         C( OP_EQ,       "==" ),                 \
28         C( OP_LE,       "<=" ),                 \
29         C( OP_LT,       "<"  ),                 \
30         C( OP_GE,       ">=" ),                 \
31         C( OP_GT,       ">"  ),                 \
32         C( OP_BAND,     "&"  ),                 \
33         C( OP_MAX,      NULL )
34
35 #undef C
36 #define C(a, b) a
37
38 enum filter_op_ids { OPS };
39
40 #undef C
41 #define C(a, b) b
42
43 static const char * ops[] = { OPS };
44
45 /*
46  * pred functions are OP_LE, OP_LT, OP_GE, OP_GT, and OP_BAND
47  * pred_funcs_##type below must match the order of them above.
48  */
49 #define PRED_FUNC_START                 OP_LE
50 #define PRED_FUNC_MAX                   (OP_BAND - PRED_FUNC_START)
51
52 #define ERRORS                                                          \
53         C(NONE,                 "No error"),                            \
54         C(INVALID_OP,           "Invalid operator"),                    \
55         C(TOO_MANY_OPEN,        "Too many '('"),                        \
56         C(TOO_MANY_CLOSE,       "Too few '('"),                         \
57         C(MISSING_QUOTE,        "Missing matching quote"),              \
58         C(OPERAND_TOO_LONG,     "Operand too long"),                    \
59         C(EXPECT_STRING,        "Expecting string field"),              \
60         C(EXPECT_DIGIT,         "Expecting numeric field"),             \
61         C(ILLEGAL_FIELD_OP,     "Illegal operation for field type"),    \
62         C(FIELD_NOT_FOUND,      "Field not found"),                     \
63         C(ILLEGAL_INTVAL,       "Illegal integer value"),               \
64         C(BAD_SUBSYS_FILTER,    "Couldn't find or set field in one of a subsystem's events"), \
65         C(TOO_MANY_PREDS,       "Too many terms in predicate expression"), \
66         C(INVALID_FILTER,       "Meaningless filter expression"),       \
67         C(IP_FIELD_ONLY,        "Only 'ip' field is supported for function trace"), \
68         C(INVALID_VALUE,        "Invalid value (did you forget quotes)?"), \
69         C(ERRNO,                "Error"),                               \
70         C(NO_FILTER,            "No filter found")
71
72 #undef C
73 #define C(a, b)         FILT_ERR_##a
74
75 enum { ERRORS };
76
77 #undef C
78 #define C(a, b)         b
79
80 static const char *err_text[] = { ERRORS };
81
82 /* Called after a '!' character but "!=" and "!~" are not "not"s */
83 static bool is_not(const char *str)
84 {
85         switch (str[1]) {
86         case '=':
87         case '~':
88                 return false;
89         }
90         return true;
91 }
92
93 /**
94  * prog_entry - a singe entry in the filter program
95  * @target:          Index to jump to on a branch (actually one minus the index)
96  * @when_to_branch:  The value of the result of the predicate to do a branch
97  * @pred:            The predicate to execute.
98  */
99 struct prog_entry {
100         int                     target;
101         int                     when_to_branch;
102         struct filter_pred      *pred;
103 };
104
105 /**
106  * update_preds- assign a program entry a label target
107  * @prog: The program array
108  * @N: The index of the current entry in @prog
109  * @when_to_branch: What to assign a program entry for its branch condition
110  *
111  * The program entry at @N has a target that points to the index of a program
112  * entry that can have its target and when_to_branch fields updated.
113  * Update the current program entry denoted by index @N target field to be
114  * that of the updated entry. This will denote the entry to update if
115  * we are processing an "||" after an "&&"
116  */
117 static void update_preds(struct prog_entry *prog, int N, int invert)
118 {
119         int t, s;
120
121         t = prog[N].target;
122         s = prog[t].target;
123         prog[t].when_to_branch = invert;
124         prog[t].target = N;
125         prog[N].target = s;
126 }
127
128 struct filter_parse_error {
129         int lasterr;
130         int lasterr_pos;
131 };
132
133 static void parse_error(struct filter_parse_error *pe, int err, int pos)
134 {
135         pe->lasterr = err;
136         pe->lasterr_pos = pos;
137 }
138
139 typedef int (*parse_pred_fn)(const char *str, void *data, int pos,
140                              struct filter_parse_error *pe,
141                              struct filter_pred **pred);
142
143 enum {
144         INVERT          = 1,
145         PROCESS_AND     = 2,
146         PROCESS_OR      = 4,
147 };
148
149 /*
150  * Without going into a formal proof, this explains the method that is used in
151  * parsing the logical expressions.
152  *
153  * For example, if we have: "a && !(!b || (c && g)) || d || e && !f"
154  * The first pass will convert it into the following program:
155  *
156  * n1: r=a;       l1: if (!r) goto l4;
157  * n2: r=b;       l2: if (!r) goto l4;
158  * n3: r=c; r=!r; l3: if (r) goto l4;
159  * n4: r=g; r=!r; l4: if (r) goto l5;
160  * n5: r=d;       l5: if (r) goto T
161  * n6: r=e;       l6: if (!r) goto l7;
162  * n7: r=f; r=!r; l7: if (!r) goto F
163  * T: return TRUE
164  * F: return FALSE
165  *
166  * To do this, we use a data structure to represent each of the above
167  * predicate and conditions that has:
168  *
169  *  predicate, when_to_branch, invert, target
170  *
171  * The "predicate" will hold the function to determine the result "r".
172  * The "when_to_branch" denotes what "r" should be if a branch is to be taken
173  * "&&" would contain "!r" or (0) and "||" would contain "r" or (1).
174  * The "invert" holds whether the value should be reversed before testing.
175  * The "target" contains the label "l#" to jump to.
176  *
177  * A stack is created to hold values when parentheses are used.
178  *
179  * To simplify the logic, the labels will start at 0 and not 1.
180  *
181  * The possible invert values are 1 and 0. The number of "!"s that are in scope
182  * before the predicate determines the invert value, if the number is odd then
183  * the invert value is 1 and 0 otherwise. This means the invert value only
184  * needs to be toggled when a new "!" is introduced compared to what is stored
185  * on the stack, where parentheses were used.
186  *
187  * The top of the stack and "invert" are initialized to zero.
188  *
189  * ** FIRST PASS **
190  *
191  * #1 A loop through all the tokens is done:
192  *
193  * #2 If the token is an "(", the stack is push, and the current stack value
194  *    gets the current invert value, and the loop continues to the next token.
195  *    The top of the stack saves the "invert" value to keep track of what
196  *    the current inversion is. As "!(a && !b || c)" would require all
197  *    predicates being affected separately by the "!" before the parentheses.
198  *    And that would end up being equivalent to "(!a || b) && !c"
199  *
200  * #3 If the token is an "!", the current "invert" value gets inverted, and
201  *    the loop continues. Note, if the next token is a predicate, then
202  *    this "invert" value is only valid for the current program entry,
203  *    and does not affect other predicates later on.
204  *
205  * The only other acceptable token is the predicate string.
206  *
207  * #4 A new entry into the program is added saving: the predicate and the
208  *    current value of "invert". The target is currently assigned to the
209  *    previous program index (this will not be its final value).
210  *
211  * #5 We now enter another loop and look at the next token. The only valid
212  *    tokens are ")", "&&", "||" or end of the input string "\0".
213  *
214  * #6 The invert variable is reset to the current value saved on the top of
215  *    the stack.
216  *
217  * #7 The top of the stack holds not only the current invert value, but also
218  *    if a "&&" or "||" needs to be processed. Note, the "&&" takes higher
219  *    precedence than "||". That is "a && b || c && d" is equivalent to
220  *    "(a && b) || (c && d)". Thus the first thing to do is to see if "&&" needs
221  *    to be processed. This is the case if an "&&" was the last token. If it was
222  *    then we call update_preds(). This takes the program, the current index in
223  *    the program, and the current value of "invert".  More will be described
224  *    below about this function.
225  *
226  * #8 If the next token is "&&" then we set a flag in the top of the stack
227  *    that denotes that "&&" needs to be processed, break out of this loop
228  *    and continue with the outer loop.
229  *
230  * #9 Otherwise, if a "||" needs to be processed then update_preds() is called.
231  *    This is called with the program, the current index in the program, but
232  *    this time with an inverted value of "invert" (that is !invert). This is
233  *    because the value taken will become the "when_to_branch" value of the
234  *    program.
235  *    Note, this is called when the next token is not an "&&". As stated before,
236  *    "&&" takes higher precedence, and "||" should not be processed yet if the
237  *    next logical operation is "&&".
238  *
239  * #10 If the next token is "||" then we set a flag in the top of the stack
240  *     that denotes that "||" needs to be processed, break out of this loop
241  *     and continue with the outer loop.
242  *
243  * #11 If this is the end of the input string "\0" then we break out of both
244  *     loops.
245  *
246  * #12 Otherwise, the next token is ")", where we pop the stack and continue
247  *     this inner loop.
248  *
249  * Now to discuss the update_pred() function, as that is key to the setting up
250  * of the program. Remember the "target" of the program is initialized to the
251  * previous index and not the "l" label. The target holds the index into the
252  * program that gets affected by the operand. Thus if we have something like
253  *  "a || b && c", when we process "a" the target will be "-1" (undefined).
254  * When we process "b", its target is "0", which is the index of "a", as that's
255  * the predicate that is affected by "||". But because the next token after "b"
256  * is "&&" we don't call update_preds(). Instead continue to "c". As the
257  * next token after "c" is not "&&" but the end of input, we first process the
258  * "&&" by calling update_preds() for the "&&" then we process the "||" by
259  * callin updates_preds() with the values for processing "||".
260  *
261  * What does that mean? What update_preds() does is to first save the "target"
262  * of the program entry indexed by the current program entry's "target"
263  * (remember the "target" is initialized to previous program entry), and then
264  * sets that "target" to the current index which represents the label "l#".
265  * That entry's "when_to_branch" is set to the value passed in (the "invert"
266  * or "!invert"). Then it sets the current program entry's target to the saved
267  * "target" value (the old value of the program that had its "target" updated
268  * to the label).
269  *
270  * Looking back at "a || b && c", we have the following steps:
271  *  "a"  - prog[0] = { "a", X, -1 } // pred, when_to_branch, target
272  *  "||" - flag that we need to process "||"; continue outer loop
273  *  "b"  - prog[1] = { "b", X, 0 }
274  *  "&&" - flag that we need to process "&&"; continue outer loop
275  * (Notice we did not process "||")
276  *  "c"  - prog[2] = { "c", X, 1 }
277  *  update_preds(prog, 2, 0); // invert = 0 as we are processing "&&"
278  *    t = prog[2].target; // t = 1
279  *    s = prog[t].target; // s = 0
280  *    prog[t].target = 2; // Set target to "l2"
281  *    prog[t].when_to_branch = 0;
282  *    prog[2].target = s;
283  * update_preds(prog, 2, 1); // invert = 1 as we are now processing "||"
284  *    t = prog[2].target; // t = 0
285  *    s = prog[t].target; // s = -1
286  *    prog[t].target = 2; // Set target to "l2"
287  *    prog[t].when_to_branch = 1;
288  *    prog[2].target = s;
289  *
290  * #13 Which brings us to the final step of the first pass, which is to set
291  *     the last program entry's when_to_branch and target, which will be
292  *     when_to_branch = 0; target = N; ( the label after the program entry after
293  *     the last program entry processed above).
294  *
295  * If we denote "TRUE" to be the entry after the last program entry processed,
296  * and "FALSE" the program entry after that, we are now done with the first
297  * pass.
298  *
299  * Making the above "a || b && c" have a progam of:
300  *  prog[0] = { "a", 1, 2 }
301  *  prog[1] = { "b", 0, 2 }
302  *  prog[2] = { "c", 0, 3 }
303  *
304  * Which translates into:
305  * n0: r = a; l0: if (r) goto l2;
306  * n1: r = b; l1: if (!r) goto l2;
307  * n2: r = c; l2: if (!r) goto l3;  // Which is the same as "goto F;"
308  * T: return TRUE; l3:
309  * F: return FALSE
310  *
311  * Although, after the first pass, the program is correct, it is
312  * inefficient. The simple sample of "a || b && c" could be easily been
313  * converted into:
314  * n0: r = a; if (r) goto T
315  * n1: r = b; if (!r) goto F
316  * n2: r = c; if (!r) goto F
317  * T: return TRUE;
318  * F: return FALSE;
319  *
320  * The First Pass is over the input string. The next too passes are over
321  * the program itself.
322  *
323  * ** SECOND PASS **
324  *
325  * Which brings us to the second pass. If a jump to a label has the
326  * same condition as that label, it can instead jump to its target.
327  * The original example of "a && !(!b || (c && g)) || d || e && !f"
328  * where the first pass gives us:
329  *
330  * n1: r=a;       l1: if (!r) goto l4;
331  * n2: r=b;       l2: if (!r) goto l4;
332  * n3: r=c; r=!r; l3: if (r) goto l4;
333  * n4: r=g; r=!r; l4: if (r) goto l5;
334  * n5: r=d;       l5: if (r) goto T
335  * n6: r=e;       l6: if (!r) goto l7;
336  * n7: r=f; r=!r; l7: if (!r) goto F:
337  * T: return TRUE;
338  * F: return FALSE
339  *
340  * We can see that "l3: if (r) goto l4;" and at l4, we have "if (r) goto l5;".
341  * And "l5: if (r) goto T", we could optimize this by converting l3 and l4
342  * to go directly to T. To accomplish this, we start from the last
343  * entry in the program and work our way back. If the target of the entry
344  * has the same "when_to_branch" then we could use that entry's target.
345  * Doing this, the above would end up as:
346  *
347  * n1: r=a;       l1: if (!r) goto l4;
348  * n2: r=b;       l2: if (!r) goto l4;
349  * n3: r=c; r=!r; l3: if (r) goto T;
350  * n4: r=g; r=!r; l4: if (r) goto T;
351  * n5: r=d;       l5: if (r) goto T;
352  * n6: r=e;       l6: if (!r) goto F;
353  * n7: r=f; r=!r; l7: if (!r) goto F;
354  * T: return TRUE
355  * F: return FALSE
356  *
357  * In that same pass, if the "when_to_branch" doesn't match, we can simply
358  * go to the program entry after the label. That is, "l2: if (!r) goto l4;"
359  * where "l4: if (r) goto T;", then we can convert l2 to be:
360  * "l2: if (!r) goto n5;".
361  *
362  * This will have the second pass give us:
363  * n1: r=a;       l1: if (!r) goto n5;
364  * n2: r=b;       l2: if (!r) goto n5;
365  * n3: r=c; r=!r; l3: if (r) goto T;
366  * n4: r=g; r=!r; l4: if (r) goto T;
367  * n5: r=d;       l5: if (r) goto T
368  * n6: r=e;       l6: if (!r) goto F;
369  * n7: r=f; r=!r; l7: if (!r) goto F
370  * T: return TRUE
371  * F: return FALSE
372  *
373  * Notice, all the "l#" labels are no longer used, and they can now
374  * be discarded.
375  *
376  * ** THIRD PASS **
377  *
378  * For the third pass we deal with the inverts. As they simply just
379  * make the "when_to_branch" get inverted, a simple loop over the
380  * program to that does: "when_to_branch ^= invert;" will do the
381  * job, leaving us with:
382  * n1: r=a; if (!r) goto n5;
383  * n2: r=b; if (!r) goto n5;
384  * n3: r=c: if (!r) goto T;
385  * n4: r=g; if (!r) goto T;
386  * n5: r=d; if (r) goto T
387  * n6: r=e; if (!r) goto F;
388  * n7: r=f; if (r) goto F
389  * T: return TRUE
390  * F: return FALSE
391  *
392  * As "r = a; if (!r) goto n5;" is obviously the same as
393  * "if (!a) goto n5;" without doing anything we can interperate the
394  * program as:
395  * n1: if (!a) goto n5;
396  * n2: if (!b) goto n5;
397  * n3: if (!c) goto T;
398  * n4: if (!g) goto T;
399  * n5: if (d) goto T
400  * n6: if (!e) goto F;
401  * n7: if (f) goto F
402  * T: return TRUE
403  * F: return FALSE
404  *
405  * Since the inverts are discarded at the end, there's no reason to store
406  * them in the program array (and waste memory). A separate array to hold
407  * the inverts is used and freed at the end.
408  */
409 static struct prog_entry *
410 predicate_parse(const char *str, int nr_parens, int nr_preds,
411                 parse_pred_fn parse_pred, void *data,
412                 struct filter_parse_error *pe)
413 {
414         struct prog_entry *prog_stack;
415         struct prog_entry *prog;
416         const char *ptr = str;
417         char *inverts = NULL;
418         int *op_stack;
419         int *top;
420         int invert = 0;
421         int ret = -ENOMEM;
422         int len;
423         int N = 0;
424         int i;
425
426         nr_preds += 2; /* For TRUE and FALSE */
427
428         op_stack = kmalloc_array(nr_parens, sizeof(*op_stack), GFP_KERNEL);
429         if (!op_stack)
430                 return ERR_PTR(-ENOMEM);
431         prog_stack = kmalloc_array(nr_preds, sizeof(*prog_stack), GFP_KERNEL);
432         if (!prog_stack) {
433                 parse_error(pe, -ENOMEM, 0);
434                 goto out_free;
435         }
436         inverts = kmalloc_array(nr_preds, sizeof(*inverts), GFP_KERNEL);
437         if (!inverts) {
438                 parse_error(pe, -ENOMEM, 0);
439                 goto out_free;
440         }
441
442         top = op_stack;
443         prog = prog_stack;
444         *top = 0;
445
446         /* First pass */
447         while (*ptr) {                                          /* #1 */
448                 const char *next = ptr++;
449
450                 if (isspace(*next))
451                         continue;
452
453                 switch (*next) {
454                 case '(':                                       /* #2 */
455                         if (top - op_stack > nr_parens)
456                                 return ERR_PTR(-EINVAL);
457                         *(++top) = invert;
458                         continue;
459                 case '!':                                       /* #3 */
460                         if (!is_not(next))
461                                 break;
462                         invert = !invert;
463                         continue;
464                 }
465
466                 if (N >= nr_preds) {
467                         parse_error(pe, FILT_ERR_TOO_MANY_PREDS, next - str);
468                         goto out_free;
469                 }
470
471                 inverts[N] = invert;                            /* #4 */
472                 prog[N].target = N-1;
473
474                 len = parse_pred(next, data, ptr - str, pe, &prog[N].pred);
475                 if (len < 0) {
476                         ret = len;
477                         goto out_free;
478                 }
479                 ptr = next + len;
480
481                 N++;
482
483                 ret = -1;
484                 while (1) {                                     /* #5 */
485                         next = ptr++;
486                         if (isspace(*next))
487                                 continue;
488
489                         switch (*next) {
490                         case ')':
491                         case '\0':
492                                 break;
493                         case '&':
494                         case '|':
495                                 /* accepting only "&&" or "||" */
496                                 if (next[1] == next[0]) {
497                                         ptr++;
498                                         break;
499                                 }
500                                 /* fall through */
501                         default:
502                                 parse_error(pe, FILT_ERR_TOO_MANY_PREDS,
503                                             next - str);
504                                 goto out_free;
505                         }
506
507                         invert = *top & INVERT;
508
509                         if (*top & PROCESS_AND) {               /* #7 */
510                                 update_preds(prog, N - 1, invert);
511                                 *top &= ~PROCESS_AND;
512                         }
513                         if (*next == '&') {                     /* #8 */
514                                 *top |= PROCESS_AND;
515                                 break;
516                         }
517                         if (*top & PROCESS_OR) {                /* #9 */
518                                 update_preds(prog, N - 1, !invert);
519                                 *top &= ~PROCESS_OR;
520                         }
521                         if (*next == '|') {                     /* #10 */
522                                 *top |= PROCESS_OR;
523                                 break;
524                         }
525                         if (!*next)                             /* #11 */
526                                 goto out;
527
528                         if (top == op_stack) {
529                                 ret = -1;
530                                 /* Too few '(' */
531                                 parse_error(pe, FILT_ERR_TOO_MANY_CLOSE, ptr - str);
532                                 goto out_free;
533                         }
534                         top--;                                  /* #12 */
535                 }
536         }
537  out:
538         if (top != op_stack) {
539                 /* Too many '(' */
540                 parse_error(pe, FILT_ERR_TOO_MANY_OPEN, ptr - str);
541                 goto out_free;
542         }
543
544         if (!N) {
545                 /* No program? */
546                 ret = -EINVAL;
547                 parse_error(pe, FILT_ERR_NO_FILTER, ptr - str);
548                 goto out_free;
549         }
550
551         prog[N].pred = NULL;                                    /* #13 */
552         prog[N].target = 1;             /* TRUE */
553         prog[N+1].pred = NULL;
554         prog[N+1].target = 0;           /* FALSE */
555         prog[N-1].target = N;
556         prog[N-1].when_to_branch = false;
557
558         /* Second Pass */
559         for (i = N-1 ; i--; ) {
560                 int target = prog[i].target;
561                 if (prog[i].when_to_branch == prog[target].when_to_branch)
562                         prog[i].target = prog[target].target;
563         }
564
565         /* Third Pass */
566         for (i = 0; i < N; i++) {
567                 invert = inverts[i] ^ prog[i].when_to_branch;
568                 prog[i].when_to_branch = invert;
569                 /* Make sure the program always moves forward */
570                 if (WARN_ON(prog[i].target <= i)) {
571                         ret = -EINVAL;
572                         goto out_free;
573                 }
574         }
575
576         kfree(op_stack);
577         kfree(inverts);
578         return prog;
579 out_free:
580         kfree(op_stack);
581         kfree(inverts);
582         kfree(prog_stack);
583         return ERR_PTR(ret);
584 }
585
586 #define DEFINE_COMPARISON_PRED(type)                                    \
587 static int filter_pred_LT_##type(struct filter_pred *pred, void *event) \
588 {                                                                       \
589         type *addr = (type *)(event + pred->offset);                    \
590         type val = (type)pred->val;                                     \
591         return *addr < val;                                             \
592 }                                                                       \
593 static int filter_pred_LE_##type(struct filter_pred *pred, void *event) \
594 {                                                                       \
595         type *addr = (type *)(event + pred->offset);                    \
596         type val = (type)pred->val;                                     \
597         return *addr <= val;                                            \
598 }                                                                       \
599 static int filter_pred_GT_##type(struct filter_pred *pred, void *event) \
600 {                                                                       \
601         type *addr = (type *)(event + pred->offset);                    \
602         type val = (type)pred->val;                                     \
603         return *addr > val;                                     \
604 }                                                                       \
605 static int filter_pred_GE_##type(struct filter_pred *pred, void *event) \
606 {                                                                       \
607         type *addr = (type *)(event + pred->offset);                    \
608         type val = (type)pred->val;                                     \
609         return *addr >= val;                                            \
610 }                                                                       \
611 static int filter_pred_BAND_##type(struct filter_pred *pred, void *event) \
612 {                                                                       \
613         type *addr = (type *)(event + pred->offset);                    \
614         type val = (type)pred->val;                                     \
615         return !!(*addr & val);                                         \
616 }                                                                       \
617 static const filter_pred_fn_t pred_funcs_##type[] = {                   \
618         filter_pred_LE_##type,                                          \
619         filter_pred_LT_##type,                                          \
620         filter_pred_GE_##type,                                          \
621         filter_pred_GT_##type,                                          \
622         filter_pred_BAND_##type,                                        \
623 };
624
625 #define DEFINE_EQUALITY_PRED(size)                                      \
626 static int filter_pred_##size(struct filter_pred *pred, void *event)    \
627 {                                                                       \
628         u##size *addr = (u##size *)(event + pred->offset);              \
629         u##size val = (u##size)pred->val;                               \
630         int match;                                                      \
631                                                                         \
632         match = (val == *addr) ^ pred->not;                             \
633                                                                         \
634         return match;                                                   \
635 }
636
637 DEFINE_COMPARISON_PRED(s64);
638 DEFINE_COMPARISON_PRED(u64);
639 DEFINE_COMPARISON_PRED(s32);
640 DEFINE_COMPARISON_PRED(u32);
641 DEFINE_COMPARISON_PRED(s16);
642 DEFINE_COMPARISON_PRED(u16);
643 DEFINE_COMPARISON_PRED(s8);
644 DEFINE_COMPARISON_PRED(u8);
645
646 DEFINE_EQUALITY_PRED(64);
647 DEFINE_EQUALITY_PRED(32);
648 DEFINE_EQUALITY_PRED(16);
649 DEFINE_EQUALITY_PRED(8);
650
651 /* Filter predicate for fixed sized arrays of characters */
652 static int filter_pred_string(struct filter_pred *pred, void *event)
653 {
654         char *addr = (char *)(event + pred->offset);
655         int cmp, match;
656
657         cmp = pred->regex.match(addr, &pred->regex, pred->regex.field_len);
658
659         match = cmp ^ pred->not;
660
661         return match;
662 }
663
664 /* Filter predicate for char * pointers */
665 static int filter_pred_pchar(struct filter_pred *pred, void *event)
666 {
667         char **addr = (char **)(event + pred->offset);
668         int cmp, match;
669         int len = strlen(*addr) + 1;    /* including tailing '\0' */
670
671         cmp = pred->regex.match(*addr, &pred->regex, len);
672
673         match = cmp ^ pred->not;
674
675         return match;
676 }
677
678 /*
679  * Filter predicate for dynamic sized arrays of characters.
680  * These are implemented through a list of strings at the end
681  * of the entry.
682  * Also each of these strings have a field in the entry which
683  * contains its offset from the beginning of the entry.
684  * We have then first to get this field, dereference it
685  * and add it to the address of the entry, and at last we have
686  * the address of the string.
687  */
688 static int filter_pred_strloc(struct filter_pred *pred, void *event)
689 {
690         u32 str_item = *(u32 *)(event + pred->offset);
691         int str_loc = str_item & 0xffff;
692         int str_len = str_item >> 16;
693         char *addr = (char *)(event + str_loc);
694         int cmp, match;
695
696         cmp = pred->regex.match(addr, &pred->regex, str_len);
697
698         match = cmp ^ pred->not;
699
700         return match;
701 }
702
703 /* Filter predicate for CPUs. */
704 static int filter_pred_cpu(struct filter_pred *pred, void *event)
705 {
706         int cpu, cmp;
707
708         cpu = raw_smp_processor_id();
709         cmp = pred->val;
710
711         switch (pred->op) {
712         case OP_EQ:
713                 return cpu == cmp;
714         case OP_NE:
715                 return cpu != cmp;
716         case OP_LT:
717                 return cpu < cmp;
718         case OP_LE:
719                 return cpu <= cmp;
720         case OP_GT:
721                 return cpu > cmp;
722         case OP_GE:
723                 return cpu >= cmp;
724         default:
725                 return 0;
726         }
727 }
728
729 /* Filter predicate for COMM. */
730 static int filter_pred_comm(struct filter_pred *pred, void *event)
731 {
732         int cmp;
733
734         cmp = pred->regex.match(current->comm, &pred->regex,
735                                 TASK_COMM_LEN);
736         return cmp ^ pred->not;
737 }
738
739 static int filter_pred_none(struct filter_pred *pred, void *event)
740 {
741         return 0;
742 }
743
744 /*
745  * regex_match_foo - Basic regex callbacks
746  *
747  * @str: the string to be searched
748  * @r:   the regex structure containing the pattern string
749  * @len: the length of the string to be searched (including '\0')
750  *
751  * Note:
752  * - @str might not be NULL-terminated if it's of type DYN_STRING
753  *   or STATIC_STRING, unless @len is zero.
754  */
755
756 static int regex_match_full(char *str, struct regex *r, int len)
757 {
758         /* len of zero means str is dynamic and ends with '\0' */
759         if (!len)
760                 return strcmp(str, r->pattern) == 0;
761
762         return strncmp(str, r->pattern, len) == 0;
763 }
764
765 static int regex_match_front(char *str, struct regex *r, int len)
766 {
767         if (len && len < r->len)
768                 return 0;
769
770         return strncmp(str, r->pattern, r->len) == 0;
771 }
772
773 static int regex_match_middle(char *str, struct regex *r, int len)
774 {
775         if (!len)
776                 return strstr(str, r->pattern) != NULL;
777
778         return strnstr(str, r->pattern, len) != NULL;
779 }
780
781 static int regex_match_end(char *str, struct regex *r, int len)
782 {
783         int strlen = len - 1;
784
785         if (strlen >= r->len &&
786             memcmp(str + strlen - r->len, r->pattern, r->len) == 0)
787                 return 1;
788         return 0;
789 }
790
791 static int regex_match_glob(char *str, struct regex *r, int len __maybe_unused)
792 {
793         if (glob_match(r->pattern, str))
794                 return 1;
795         return 0;
796 }
797
798 /**
799  * filter_parse_regex - parse a basic regex
800  * @buff:   the raw regex
801  * @len:    length of the regex
802  * @search: will point to the beginning of the string to compare
803  * @not:    tell whether the match will have to be inverted
804  *
805  * This passes in a buffer containing a regex and this function will
806  * set search to point to the search part of the buffer and
807  * return the type of search it is (see enum above).
808  * This does modify buff.
809  *
810  * Returns enum type.
811  *  search returns the pointer to use for comparison.
812  *  not returns 1 if buff started with a '!'
813  *     0 otherwise.
814  */
815 enum regex_type filter_parse_regex(char *buff, int len, char **search, int *not)
816 {
817         int type = MATCH_FULL;
818         int i;
819
820         if (buff[0] == '!') {
821                 *not = 1;
822                 buff++;
823                 len--;
824         } else
825                 *not = 0;
826
827         *search = buff;
828
829         if (isdigit(buff[0]))
830                 return MATCH_INDEX;
831
832         for (i = 0; i < len; i++) {
833                 if (buff[i] == '*') {
834                         if (!i) {
835                                 type = MATCH_END_ONLY;
836                         } else if (i == len - 1) {
837                                 if (type == MATCH_END_ONLY)
838                                         type = MATCH_MIDDLE_ONLY;
839                                 else
840                                         type = MATCH_FRONT_ONLY;
841                                 buff[i] = 0;
842                                 break;
843                         } else {        /* pattern continues, use full glob */
844                                 return MATCH_GLOB;
845                         }
846                 } else if (strchr("[?\\", buff[i])) {
847                         return MATCH_GLOB;
848                 }
849         }
850         if (buff[0] == '*')
851                 *search = buff + 1;
852
853         return type;
854 }
855
856 static void filter_build_regex(struct filter_pred *pred)
857 {
858         struct regex *r = &pred->regex;
859         char *search;
860         enum regex_type type = MATCH_FULL;
861
862         if (pred->op == OP_GLOB) {
863                 type = filter_parse_regex(r->pattern, r->len, &search, &pred->not);
864                 r->len = strlen(search);
865                 memmove(r->pattern, search, r->len+1);
866         }
867
868         switch (type) {
869         /* MATCH_INDEX should not happen, but if it does, match full */
870         case MATCH_INDEX:
871         case MATCH_FULL:
872                 r->match = regex_match_full;
873                 break;
874         case MATCH_FRONT_ONLY:
875                 r->match = regex_match_front;
876                 break;
877         case MATCH_MIDDLE_ONLY:
878                 r->match = regex_match_middle;
879                 break;
880         case MATCH_END_ONLY:
881                 r->match = regex_match_end;
882                 break;
883         case MATCH_GLOB:
884                 r->match = regex_match_glob;
885                 break;
886         }
887 }
888
889 /* return 1 if event matches, 0 otherwise (discard) */
890 int filter_match_preds(struct event_filter *filter, void *rec)
891 {
892         struct prog_entry *prog;
893         int i;
894
895         /* no filter is considered a match */
896         if (!filter)
897                 return 1;
898
899         /* Protected by either SRCU(tracepoint_srcu) or preempt_disable */
900         prog = rcu_dereference_raw(filter->prog);
901         if (!prog)
902                 return 1;
903
904         for (i = 0; prog[i].pred; i++) {
905                 struct filter_pred *pred = prog[i].pred;
906                 int match = pred->fn(pred, rec);
907                 if (match == prog[i].when_to_branch)
908                         i = prog[i].target;
909         }
910         return prog[i].target;
911 }
912 EXPORT_SYMBOL_GPL(filter_match_preds);
913
914 static void remove_filter_string(struct event_filter *filter)
915 {
916         if (!filter)
917                 return;
918
919         kfree(filter->filter_string);
920         filter->filter_string = NULL;
921 }
922
923 static void append_filter_err(struct trace_array *tr,
924                               struct filter_parse_error *pe,
925                               struct event_filter *filter)
926 {
927         struct trace_seq *s;
928         int pos = pe->lasterr_pos;
929         char *buf;
930         int len;
931
932         if (WARN_ON(!filter->filter_string))
933                 return;
934
935         s = kmalloc(sizeof(*s), GFP_KERNEL);
936         if (!s)
937                 return;
938         trace_seq_init(s);
939
940         len = strlen(filter->filter_string);
941         if (pos > len)
942                 pos = len;
943
944         /* indexing is off by one */
945         if (pos)
946                 pos++;
947
948         trace_seq_puts(s, filter->filter_string);
949         if (pe->lasterr > 0) {
950                 trace_seq_printf(s, "\n%*s", pos, "^");
951                 trace_seq_printf(s, "\nparse_error: %s\n", err_text[pe->lasterr]);
952                 tracing_log_err(tr, "event filter parse error",
953                                 filter->filter_string, err_text,
954                                 pe->lasterr, pe->lasterr_pos);
955         } else {
956                 trace_seq_printf(s, "\nError: (%d)\n", pe->lasterr);
957                 tracing_log_err(tr, "event filter parse error",
958                                 filter->filter_string, err_text,
959                                 FILT_ERR_ERRNO, 0);
960         }
961         trace_seq_putc(s, 0);
962         buf = kmemdup_nul(s->buffer, s->seq.len, GFP_KERNEL);
963         if (buf) {
964                 kfree(filter->filter_string);
965                 filter->filter_string = buf;
966         }
967         kfree(s);
968 }
969
970 static inline struct event_filter *event_filter(struct trace_event_file *file)
971 {
972         return file->filter;
973 }
974
975 /* caller must hold event_mutex */
976 void print_event_filter(struct trace_event_file *file, struct trace_seq *s)
977 {
978         struct event_filter *filter = event_filter(file);
979
980         if (filter && filter->filter_string)
981                 trace_seq_printf(s, "%s\n", filter->filter_string);
982         else
983                 trace_seq_puts(s, "none\n");
984 }
985
986 void print_subsystem_event_filter(struct event_subsystem *system,
987                                   struct trace_seq *s)
988 {
989         struct event_filter *filter;
990
991         mutex_lock(&event_mutex);
992         filter = system->filter;
993         if (filter && filter->filter_string)
994                 trace_seq_printf(s, "%s\n", filter->filter_string);
995         else
996                 trace_seq_puts(s, DEFAULT_SYS_FILTER_MESSAGE "\n");
997         mutex_unlock(&event_mutex);
998 }
999
1000 static void free_prog(struct event_filter *filter)
1001 {
1002         struct prog_entry *prog;
1003         int i;
1004
1005         prog = rcu_access_pointer(filter->prog);
1006         if (!prog)
1007                 return;
1008
1009         for (i = 0; prog[i].pred; i++)
1010                 kfree(prog[i].pred);
1011         kfree(prog);
1012 }
1013
1014 static void filter_disable(struct trace_event_file *file)
1015 {
1016         unsigned long old_flags = file->flags;
1017
1018         file->flags &= ~EVENT_FILE_FL_FILTERED;
1019
1020         if (old_flags != file->flags)
1021                 trace_buffered_event_disable();
1022 }
1023
1024 static void __free_filter(struct event_filter *filter)
1025 {
1026         if (!filter)
1027                 return;
1028
1029         free_prog(filter);
1030         kfree(filter->filter_string);
1031         kfree(filter);
1032 }
1033
1034 void free_event_filter(struct event_filter *filter)
1035 {
1036         __free_filter(filter);
1037 }
1038
1039 static inline void __remove_filter(struct trace_event_file *file)
1040 {
1041         filter_disable(file);
1042         remove_filter_string(file->filter);
1043 }
1044
1045 static void filter_free_subsystem_preds(struct trace_subsystem_dir *dir,
1046                                         struct trace_array *tr)
1047 {
1048         struct trace_event_file *file;
1049
1050         list_for_each_entry(file, &tr->events, list) {
1051                 if (file->system != dir)
1052                         continue;
1053                 __remove_filter(file);
1054         }
1055 }
1056
1057 static inline void __free_subsystem_filter(struct trace_event_file *file)
1058 {
1059         __free_filter(file->filter);
1060         file->filter = NULL;
1061 }
1062
1063 static void filter_free_subsystem_filters(struct trace_subsystem_dir *dir,
1064                                           struct trace_array *tr)
1065 {
1066         struct trace_event_file *file;
1067
1068         list_for_each_entry(file, &tr->events, list) {
1069                 if (file->system != dir)
1070                         continue;
1071                 __free_subsystem_filter(file);
1072         }
1073 }
1074
1075 int filter_assign_type(const char *type)
1076 {
1077         if (strstr(type, "__data_loc") && strstr(type, "char"))
1078                 return FILTER_DYN_STRING;
1079
1080         if (strchr(type, '[') && strstr(type, "char"))
1081                 return FILTER_STATIC_STRING;
1082
1083         return FILTER_OTHER;
1084 }
1085
1086 static filter_pred_fn_t select_comparison_fn(enum filter_op_ids op,
1087                                             int field_size, int field_is_signed)
1088 {
1089         filter_pred_fn_t fn = NULL;
1090         int pred_func_index = -1;
1091
1092         switch (op) {
1093         case OP_EQ:
1094         case OP_NE:
1095                 break;
1096         default:
1097                 if (WARN_ON_ONCE(op < PRED_FUNC_START))
1098                         return NULL;
1099                 pred_func_index = op - PRED_FUNC_START;
1100                 if (WARN_ON_ONCE(pred_func_index > PRED_FUNC_MAX))
1101                         return NULL;
1102         }
1103
1104         switch (field_size) {
1105         case 8:
1106                 if (pred_func_index < 0)
1107                         fn = filter_pred_64;
1108                 else if (field_is_signed)
1109                         fn = pred_funcs_s64[pred_func_index];
1110                 else
1111                         fn = pred_funcs_u64[pred_func_index];
1112                 break;
1113         case 4:
1114                 if (pred_func_index < 0)
1115                         fn = filter_pred_32;
1116                 else if (field_is_signed)
1117                         fn = pred_funcs_s32[pred_func_index];
1118                 else
1119                         fn = pred_funcs_u32[pred_func_index];
1120                 break;
1121         case 2:
1122                 if (pred_func_index < 0)
1123                         fn = filter_pred_16;
1124                 else if (field_is_signed)
1125                         fn = pred_funcs_s16[pred_func_index];
1126                 else
1127                         fn = pred_funcs_u16[pred_func_index];
1128                 break;
1129         case 1:
1130                 if (pred_func_index < 0)
1131                         fn = filter_pred_8;
1132                 else if (field_is_signed)
1133                         fn = pred_funcs_s8[pred_func_index];
1134                 else
1135                         fn = pred_funcs_u8[pred_func_index];
1136                 break;
1137         }
1138
1139         return fn;
1140 }
1141
1142 /* Called when a predicate is encountered by predicate_parse() */
1143 static int parse_pred(const char *str, void *data,
1144                       int pos, struct filter_parse_error *pe,
1145                       struct filter_pred **pred_ptr)
1146 {
1147         struct trace_event_call *call = data;
1148         struct ftrace_event_field *field;
1149         struct filter_pred *pred = NULL;
1150         char num_buf[24];       /* Big enough to hold an address */
1151         char *field_name;
1152         char q;
1153         u64 val;
1154         int len;
1155         int ret;
1156         int op;
1157         int s;
1158         int i = 0;
1159
1160         /* First find the field to associate to */
1161         while (isspace(str[i]))
1162                 i++;
1163         s = i;
1164
1165         while (isalnum(str[i]) || str[i] == '_')
1166                 i++;
1167
1168         len = i - s;
1169
1170         if (!len)
1171                 return -1;
1172
1173         field_name = kmemdup_nul(str + s, len, GFP_KERNEL);
1174         if (!field_name)
1175                 return -ENOMEM;
1176
1177         /* Make sure that the field exists */
1178
1179         field = trace_find_event_field(call, field_name);
1180         kfree(field_name);
1181         if (!field) {
1182                 parse_error(pe, FILT_ERR_FIELD_NOT_FOUND, pos + i);
1183                 return -EINVAL;
1184         }
1185
1186         while (isspace(str[i]))
1187                 i++;
1188
1189         /* Make sure this op is supported */
1190         for (op = 0; ops[op]; op++) {
1191                 /* This is why '<=' must come before '<' in ops[] */
1192                 if (strncmp(str + i, ops[op], strlen(ops[op])) == 0)
1193                         break;
1194         }
1195
1196         if (!ops[op]) {
1197                 parse_error(pe, FILT_ERR_INVALID_OP, pos + i);
1198                 goto err_free;
1199         }
1200
1201         i += strlen(ops[op]);
1202
1203         while (isspace(str[i]))
1204                 i++;
1205
1206         s = i;
1207
1208         pred = kzalloc(sizeof(*pred), GFP_KERNEL);
1209         if (!pred)
1210                 return -ENOMEM;
1211
1212         pred->field = field;
1213         pred->offset = field->offset;
1214         pred->op = op;
1215
1216         if (ftrace_event_is_function(call)) {
1217                 /*
1218                  * Perf does things different with function events.
1219                  * It only allows an "ip" field, and expects a string.
1220                  * But the string does not need to be surrounded by quotes.
1221                  * If it is a string, the assigned function as a nop,
1222                  * (perf doesn't use it) and grab everything.
1223                  */
1224                 if (strcmp(field->name, "ip") != 0) {
1225                         parse_error(pe, FILT_ERR_IP_FIELD_ONLY, pos + i);
1226                         goto err_free;
1227                 }
1228                 pred->fn = filter_pred_none;
1229
1230                 /*
1231                  * Quotes are not required, but if they exist then we need
1232                  * to read them till we hit a matching one.
1233                  */
1234                 if (str[i] == '\'' || str[i] == '"')
1235                         q = str[i];
1236                 else
1237                         q = 0;
1238
1239                 for (i++; str[i]; i++) {
1240                         if (q && str[i] == q)
1241                                 break;
1242                         if (!q && (str[i] == ')' || str[i] == '&' ||
1243                                    str[i] == '|'))
1244                                 break;
1245                 }
1246                 /* Skip quotes */
1247                 if (q)
1248                         s++;
1249                 len = i - s;
1250                 if (len >= MAX_FILTER_STR_VAL) {
1251                         parse_error(pe, FILT_ERR_OPERAND_TOO_LONG, pos + i);
1252                         goto err_free;
1253                 }
1254
1255                 pred->regex.len = len;
1256                 strncpy(pred->regex.pattern, str + s, len);
1257                 pred->regex.pattern[len] = 0;
1258
1259         /* This is either a string, or an integer */
1260         } else if (str[i] == '\'' || str[i] == '"') {
1261                 char q = str[i];
1262
1263                 /* Make sure the op is OK for strings */
1264                 switch (op) {
1265                 case OP_NE:
1266                         pred->not = 1;
1267                         /* Fall through */
1268                 case OP_GLOB:
1269                 case OP_EQ:
1270                         break;
1271                 default:
1272                         parse_error(pe, FILT_ERR_ILLEGAL_FIELD_OP, pos + i);
1273                         goto err_free;
1274                 }
1275
1276                 /* Make sure the field is OK for strings */
1277                 if (!is_string_field(field)) {
1278                         parse_error(pe, FILT_ERR_EXPECT_DIGIT, pos + i);
1279                         goto err_free;
1280                 }
1281
1282                 for (i++; str[i]; i++) {
1283                         if (str[i] == q)
1284                                 break;
1285                 }
1286                 if (!str[i]) {
1287                         parse_error(pe, FILT_ERR_MISSING_QUOTE, pos + i);
1288                         goto err_free;
1289                 }
1290
1291                 /* Skip quotes */
1292                 s++;
1293                 len = i - s;
1294                 if (len >= MAX_FILTER_STR_VAL) {
1295                         parse_error(pe, FILT_ERR_OPERAND_TOO_LONG, pos + i);
1296                         goto err_free;
1297                 }
1298
1299                 pred->regex.len = len;
1300                 strncpy(pred->regex.pattern, str + s, len);
1301                 pred->regex.pattern[len] = 0;
1302
1303                 filter_build_regex(pred);
1304
1305                 if (field->filter_type == FILTER_COMM) {
1306                         pred->fn = filter_pred_comm;
1307
1308                 } else if (field->filter_type == FILTER_STATIC_STRING) {
1309                         pred->fn = filter_pred_string;
1310                         pred->regex.field_len = field->size;
1311
1312                 } else if (field->filter_type == FILTER_DYN_STRING)
1313                         pred->fn = filter_pred_strloc;
1314                 else
1315                         pred->fn = filter_pred_pchar;
1316                 /* go past the last quote */
1317                 i++;
1318
1319         } else if (isdigit(str[i]) || str[i] == '-') {
1320
1321                 /* Make sure the field is not a string */
1322                 if (is_string_field(field)) {
1323                         parse_error(pe, FILT_ERR_EXPECT_STRING, pos + i);
1324                         goto err_free;
1325                 }
1326
1327                 if (op == OP_GLOB) {
1328                         parse_error(pe, FILT_ERR_ILLEGAL_FIELD_OP, pos + i);
1329                         goto err_free;
1330                 }
1331
1332                 if (str[i] == '-')
1333                         i++;
1334
1335                 /* We allow 0xDEADBEEF */
1336                 while (isalnum(str[i]))
1337                         i++;
1338
1339                 len = i - s;
1340                 /* 0xfeedfacedeadbeef is 18 chars max */
1341                 if (len >= sizeof(num_buf)) {
1342                         parse_error(pe, FILT_ERR_OPERAND_TOO_LONG, pos + i);
1343                         goto err_free;
1344                 }
1345
1346                 strncpy(num_buf, str + s, len);
1347                 num_buf[len] = 0;
1348
1349                 /* Make sure it is a value */
1350                 if (field->is_signed)
1351                         ret = kstrtoll(num_buf, 0, &val);
1352                 else
1353                         ret = kstrtoull(num_buf, 0, &val);
1354                 if (ret) {
1355                         parse_error(pe, FILT_ERR_ILLEGAL_INTVAL, pos + s);
1356                         goto err_free;
1357                 }
1358
1359                 pred->val = val;
1360
1361                 if (field->filter_type == FILTER_CPU)
1362                         pred->fn = filter_pred_cpu;
1363                 else {
1364                         pred->fn = select_comparison_fn(pred->op, field->size,
1365                                                         field->is_signed);
1366                         if (pred->op == OP_NE)
1367                                 pred->not = 1;
1368                 }
1369
1370         } else {
1371                 parse_error(pe, FILT_ERR_INVALID_VALUE, pos + i);
1372                 goto err_free;
1373         }
1374
1375         *pred_ptr = pred;
1376         return i;
1377
1378 err_free:
1379         kfree(pred);
1380         return -EINVAL;
1381 }
1382
1383 enum {
1384         TOO_MANY_CLOSE          = -1,
1385         TOO_MANY_OPEN           = -2,
1386         MISSING_QUOTE           = -3,
1387 };
1388
1389 /*
1390  * Read the filter string once to calculate the number of predicates
1391  * as well as how deep the parentheses go.
1392  *
1393  * Returns:
1394  *   0 - everything is fine (err is undefined)
1395  *  -1 - too many ')'
1396  *  -2 - too many '('
1397  *  -3 - No matching quote
1398  */
1399 static int calc_stack(const char *str, int *parens, int *preds, int *err)
1400 {
1401         bool is_pred = false;
1402         int nr_preds = 0;
1403         int open = 1; /* Count the expression as "(E)" */
1404         int last_quote = 0;
1405         int max_open = 1;
1406         int quote = 0;
1407         int i;
1408
1409         *err = 0;
1410
1411         for (i = 0; str[i]; i++) {
1412                 if (isspace(str[i]))
1413                         continue;
1414                 if (quote) {
1415                         if (str[i] == quote)
1416                                quote = 0;
1417                         continue;
1418                 }
1419
1420                 switch (str[i]) {
1421                 case '\'':
1422                 case '"':
1423                         quote = str[i];
1424                         last_quote = i;
1425                         break;
1426                 case '|':
1427                 case '&':
1428                         if (str[i+1] != str[i])
1429                                 break;
1430                         is_pred = false;
1431                         continue;
1432                 case '(':
1433                         is_pred = false;
1434                         open++;
1435                         if (open > max_open)
1436                                 max_open = open;
1437                         continue;
1438                 case ')':
1439                         is_pred = false;
1440                         if (open == 1) {
1441                                 *err = i;
1442                                 return TOO_MANY_CLOSE;
1443                         }
1444                         open--;
1445                         continue;
1446                 }
1447                 if (!is_pred) {
1448                         nr_preds++;
1449                         is_pred = true;
1450                 }
1451         }
1452
1453         if (quote) {
1454                 *err = last_quote;
1455                 return MISSING_QUOTE;
1456         }
1457
1458         if (open != 1) {
1459                 int level = open;
1460
1461                 /* find the bad open */
1462                 for (i--; i; i--) {
1463                         if (quote) {
1464                                 if (str[i] == quote)
1465                                         quote = 0;
1466                                 continue;
1467                         }
1468                         switch (str[i]) {
1469                         case '(':
1470                                 if (level == open) {
1471                                         *err = i;
1472                                         return TOO_MANY_OPEN;
1473                                 }
1474                                 level--;
1475                                 break;
1476                         case ')':
1477                                 level++;
1478                                 break;
1479                         case '\'':
1480                         case '"':
1481                                 quote = str[i];
1482                                 break;
1483                         }
1484                 }
1485                 /* First character is the '(' with missing ')' */
1486                 *err = 0;
1487                 return TOO_MANY_OPEN;
1488         }
1489
1490         /* Set the size of the required stacks */
1491         *parens = max_open;
1492         *preds = nr_preds;
1493         return 0;
1494 }
1495
1496 static int process_preds(struct trace_event_call *call,
1497                          const char *filter_string,
1498                          struct event_filter *filter,
1499                          struct filter_parse_error *pe)
1500 {
1501         struct prog_entry *prog;
1502         int nr_parens;
1503         int nr_preds;
1504         int index;
1505         int ret;
1506
1507         ret = calc_stack(filter_string, &nr_parens, &nr_preds, &index);
1508         if (ret < 0) {
1509                 switch (ret) {
1510                 case MISSING_QUOTE:
1511                         parse_error(pe, FILT_ERR_MISSING_QUOTE, index);
1512                         break;
1513                 case TOO_MANY_OPEN:
1514                         parse_error(pe, FILT_ERR_TOO_MANY_OPEN, index);
1515                         break;
1516                 default:
1517                         parse_error(pe, FILT_ERR_TOO_MANY_CLOSE, index);
1518                 }
1519                 return ret;
1520         }
1521
1522         if (!nr_preds)
1523                 return -EINVAL;
1524
1525         prog = predicate_parse(filter_string, nr_parens, nr_preds,
1526                                parse_pred, call, pe);
1527         if (IS_ERR(prog))
1528                 return PTR_ERR(prog);
1529
1530         rcu_assign_pointer(filter->prog, prog);
1531         return 0;
1532 }
1533
1534 static inline void event_set_filtered_flag(struct trace_event_file *file)
1535 {
1536         unsigned long old_flags = file->flags;
1537
1538         file->flags |= EVENT_FILE_FL_FILTERED;
1539
1540         if (old_flags != file->flags)
1541                 trace_buffered_event_enable();
1542 }
1543
1544 static inline void event_set_filter(struct trace_event_file *file,
1545                                     struct event_filter *filter)
1546 {
1547         rcu_assign_pointer(file->filter, filter);
1548 }
1549
1550 static inline void event_clear_filter(struct trace_event_file *file)
1551 {
1552         RCU_INIT_POINTER(file->filter, NULL);
1553 }
1554
1555 static inline void
1556 event_set_no_set_filter_flag(struct trace_event_file *file)
1557 {
1558         file->flags |= EVENT_FILE_FL_NO_SET_FILTER;
1559 }
1560
1561 static inline void
1562 event_clear_no_set_filter_flag(struct trace_event_file *file)
1563 {
1564         file->flags &= ~EVENT_FILE_FL_NO_SET_FILTER;
1565 }
1566
1567 static inline bool
1568 event_no_set_filter_flag(struct trace_event_file *file)
1569 {
1570         if (file->flags & EVENT_FILE_FL_NO_SET_FILTER)
1571                 return true;
1572
1573         return false;
1574 }
1575
1576 struct filter_list {
1577         struct list_head        list;
1578         struct event_filter     *filter;
1579 };
1580
1581 static int process_system_preds(struct trace_subsystem_dir *dir,
1582                                 struct trace_array *tr,
1583                                 struct filter_parse_error *pe,
1584                                 char *filter_string)
1585 {
1586         struct trace_event_file *file;
1587         struct filter_list *filter_item;
1588         struct event_filter *filter = NULL;
1589         struct filter_list *tmp;
1590         LIST_HEAD(filter_list);
1591         bool fail = true;
1592         int err;
1593
1594         list_for_each_entry(file, &tr->events, list) {
1595
1596                 if (file->system != dir)
1597                         continue;
1598
1599                 filter = kzalloc(sizeof(*filter), GFP_KERNEL);
1600                 if (!filter)
1601                         goto fail_mem;
1602
1603                 filter->filter_string = kstrdup(filter_string, GFP_KERNEL);
1604                 if (!filter->filter_string)
1605                         goto fail_mem;
1606
1607                 err = process_preds(file->event_call, filter_string, filter, pe);
1608                 if (err) {
1609                         filter_disable(file);
1610                         parse_error(pe, FILT_ERR_BAD_SUBSYS_FILTER, 0);
1611                         append_filter_err(tr, pe, filter);
1612                 } else
1613                         event_set_filtered_flag(file);
1614
1615
1616                 filter_item = kzalloc(sizeof(*filter_item), GFP_KERNEL);
1617                 if (!filter_item)
1618                         goto fail_mem;
1619
1620                 list_add_tail(&filter_item->list, &filter_list);
1621                 /*
1622                  * Regardless of if this returned an error, we still
1623                  * replace the filter for the call.
1624                  */
1625                 filter_item->filter = event_filter(file);
1626                 event_set_filter(file, filter);
1627                 filter = NULL;
1628
1629                 fail = false;
1630         }
1631
1632         if (fail)
1633                 goto fail;
1634
1635         /*
1636          * The calls can still be using the old filters.
1637          * Do a synchronize_rcu() and to ensure all calls are
1638          * done with them before we free them.
1639          */
1640         tracepoint_synchronize_unregister();
1641         list_for_each_entry_safe(filter_item, tmp, &filter_list, list) {
1642                 __free_filter(filter_item->filter);
1643                 list_del(&filter_item->list);
1644                 kfree(filter_item);
1645         }
1646         return 0;
1647  fail:
1648         /* No call succeeded */
1649         list_for_each_entry_safe(filter_item, tmp, &filter_list, list) {
1650                 list_del(&filter_item->list);
1651                 kfree(filter_item);
1652         }
1653         parse_error(pe, FILT_ERR_BAD_SUBSYS_FILTER, 0);
1654         return -EINVAL;
1655  fail_mem:
1656         kfree(filter);
1657         /* If any call succeeded, we still need to sync */
1658         if (!fail)
1659                 tracepoint_synchronize_unregister();
1660         list_for_each_entry_safe(filter_item, tmp, &filter_list, list) {
1661                 __free_filter(filter_item->filter);
1662                 list_del(&filter_item->list);
1663                 kfree(filter_item);
1664         }
1665         return -ENOMEM;
1666 }
1667
1668 static int create_filter_start(char *filter_string, bool set_str,
1669                                struct filter_parse_error **pse,
1670                                struct event_filter **filterp)
1671 {
1672         struct event_filter *filter;
1673         struct filter_parse_error *pe = NULL;
1674         int err = 0;
1675
1676         if (WARN_ON_ONCE(*pse || *filterp))
1677                 return -EINVAL;
1678
1679         filter = kzalloc(sizeof(*filter), GFP_KERNEL);
1680         if (filter && set_str) {
1681                 filter->filter_string = kstrdup(filter_string, GFP_KERNEL);
1682                 if (!filter->filter_string)
1683                         err = -ENOMEM;
1684         }
1685
1686         pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1687
1688         if (!filter || !pe || err) {
1689                 kfree(pe);
1690                 __free_filter(filter);
1691                 return -ENOMEM;
1692         }
1693
1694         /* we're committed to creating a new filter */
1695         *filterp = filter;
1696         *pse = pe;
1697
1698         return 0;
1699 }
1700
1701 static void create_filter_finish(struct filter_parse_error *pe)
1702 {
1703         kfree(pe);
1704 }
1705
1706 /**
1707  * create_filter - create a filter for a trace_event_call
1708  * @call: trace_event_call to create a filter for
1709  * @filter_str: filter string
1710  * @set_str: remember @filter_str and enable detailed error in filter
1711  * @filterp: out param for created filter (always updated on return)
1712  *           Must be a pointer that references a NULL pointer.
1713  *
1714  * Creates a filter for @call with @filter_str.  If @set_str is %true,
1715  * @filter_str is copied and recorded in the new filter.
1716  *
1717  * On success, returns 0 and *@filterp points to the new filter.  On
1718  * failure, returns -errno and *@filterp may point to %NULL or to a new
1719  * filter.  In the latter case, the returned filter contains error
1720  * information if @set_str is %true and the caller is responsible for
1721  * freeing it.
1722  */
1723 static int create_filter(struct trace_array *tr,
1724                          struct trace_event_call *call,
1725                          char *filter_string, bool set_str,
1726                          struct event_filter **filterp)
1727 {
1728         struct filter_parse_error *pe = NULL;
1729         int err;
1730
1731         /* filterp must point to NULL */
1732         if (WARN_ON(*filterp))
1733                 *filterp = NULL;
1734
1735         err = create_filter_start(filter_string, set_str, &pe, filterp);
1736         if (err)
1737                 return err;
1738
1739         err = process_preds(call, filter_string, *filterp, pe);
1740         if (err && set_str)
1741                 append_filter_err(tr, pe, *filterp);
1742         create_filter_finish(pe);
1743
1744         return err;
1745 }
1746
1747 int create_event_filter(struct trace_array *tr,
1748                         struct trace_event_call *call,
1749                         char *filter_str, bool set_str,
1750                         struct event_filter **filterp)
1751 {
1752         return create_filter(tr, call, filter_str, set_str, filterp);
1753 }
1754
1755 /**
1756  * create_system_filter - create a filter for an event_subsystem
1757  * @system: event_subsystem to create a filter for
1758  * @filter_str: filter string
1759  * @filterp: out param for created filter (always updated on return)
1760  *
1761  * Identical to create_filter() except that it creates a subsystem filter
1762  * and always remembers @filter_str.
1763  */
1764 static int create_system_filter(struct trace_subsystem_dir *dir,
1765                                 struct trace_array *tr,
1766                                 char *filter_str, struct event_filter **filterp)
1767 {
1768         struct filter_parse_error *pe = NULL;
1769         int err;
1770
1771         err = create_filter_start(filter_str, true, &pe, filterp);
1772         if (!err) {
1773                 err = process_system_preds(dir, tr, pe, filter_str);
1774                 if (!err) {
1775                         /* System filters just show a default message */
1776                         kfree((*filterp)->filter_string);
1777                         (*filterp)->filter_string = NULL;
1778                 } else {
1779                         append_filter_err(tr, pe, *filterp);
1780                 }
1781         }
1782         create_filter_finish(pe);
1783
1784         return err;
1785 }
1786
1787 /* caller must hold event_mutex */
1788 int apply_event_filter(struct trace_event_file *file, char *filter_string)
1789 {
1790         struct trace_event_call *call = file->event_call;
1791         struct event_filter *filter = NULL;
1792         int err;
1793
1794         if (!strcmp(strstrip(filter_string), "0")) {
1795                 filter_disable(file);
1796                 filter = event_filter(file);
1797
1798                 if (!filter)
1799                         return 0;
1800
1801                 event_clear_filter(file);
1802
1803                 /* Make sure the filter is not being used */
1804                 tracepoint_synchronize_unregister();
1805                 __free_filter(filter);
1806
1807                 return 0;
1808         }
1809
1810         err = create_filter(file->tr, call, filter_string, true, &filter);
1811
1812         /*
1813          * Always swap the call filter with the new filter
1814          * even if there was an error. If there was an error
1815          * in the filter, we disable the filter and show the error
1816          * string
1817          */
1818         if (filter) {
1819                 struct event_filter *tmp;
1820
1821                 tmp = event_filter(file);
1822                 if (!err)
1823                         event_set_filtered_flag(file);
1824                 else
1825                         filter_disable(file);
1826
1827                 event_set_filter(file, filter);
1828
1829                 if (tmp) {
1830                         /* Make sure the call is done with the filter */
1831                         tracepoint_synchronize_unregister();
1832                         __free_filter(tmp);
1833                 }
1834         }
1835
1836         return err;
1837 }
1838
1839 int apply_subsystem_event_filter(struct trace_subsystem_dir *dir,
1840                                  char *filter_string)
1841 {
1842         struct event_subsystem *system = dir->subsystem;
1843         struct trace_array *tr = dir->tr;
1844         struct event_filter *filter = NULL;
1845         int err = 0;
1846
1847         mutex_lock(&event_mutex);
1848
1849         /* Make sure the system still has events */
1850         if (!dir->nr_events) {
1851                 err = -ENODEV;
1852                 goto out_unlock;
1853         }
1854
1855         if (!strcmp(strstrip(filter_string), "0")) {
1856                 filter_free_subsystem_preds(dir, tr);
1857                 remove_filter_string(system->filter);
1858                 filter = system->filter;
1859                 system->filter = NULL;
1860                 /* Ensure all filters are no longer used */
1861                 tracepoint_synchronize_unregister();
1862                 filter_free_subsystem_filters(dir, tr);
1863                 __free_filter(filter);
1864                 goto out_unlock;
1865         }
1866
1867         err = create_system_filter(dir, tr, filter_string, &filter);
1868         if (filter) {
1869                 /*
1870                  * No event actually uses the system filter
1871                  * we can free it without synchronize_rcu().
1872                  */
1873                 __free_filter(system->filter);
1874                 system->filter = filter;
1875         }
1876 out_unlock:
1877         mutex_unlock(&event_mutex);
1878
1879         return err;
1880 }
1881
1882 #ifdef CONFIG_PERF_EVENTS
1883
1884 void ftrace_profile_free_filter(struct perf_event *event)
1885 {
1886         struct event_filter *filter = event->filter;
1887
1888         event->filter = NULL;
1889         __free_filter(filter);
1890 }
1891
1892 struct function_filter_data {
1893         struct ftrace_ops *ops;
1894         int first_filter;
1895         int first_notrace;
1896 };
1897
1898 #ifdef CONFIG_FUNCTION_TRACER
1899 static char **
1900 ftrace_function_filter_re(char *buf, int len, int *count)
1901 {
1902         char *str, **re;
1903
1904         str = kstrndup(buf, len, GFP_KERNEL);
1905         if (!str)
1906                 return NULL;
1907
1908         /*
1909          * The argv_split function takes white space
1910          * as a separator, so convert ',' into spaces.
1911          */
1912         strreplace(str, ',', ' ');
1913
1914         re = argv_split(GFP_KERNEL, str, count);
1915         kfree(str);
1916         return re;
1917 }
1918
1919 static int ftrace_function_set_regexp(struct ftrace_ops *ops, int filter,
1920                                       int reset, char *re, int len)
1921 {
1922         int ret;
1923
1924         if (filter)
1925                 ret = ftrace_set_filter(ops, re, len, reset);
1926         else
1927                 ret = ftrace_set_notrace(ops, re, len, reset);
1928
1929         return ret;
1930 }
1931
1932 static int __ftrace_function_set_filter(int filter, char *buf, int len,
1933                                         struct function_filter_data *data)
1934 {
1935         int i, re_cnt, ret = -EINVAL;
1936         int *reset;
1937         char **re;
1938
1939         reset = filter ? &data->first_filter : &data->first_notrace;
1940
1941         /*
1942          * The 'ip' field could have multiple filters set, separated
1943          * either by space or comma. We first cut the filter and apply
1944          * all pieces separatelly.
1945          */
1946         re = ftrace_function_filter_re(buf, len, &re_cnt);
1947         if (!re)
1948                 return -EINVAL;
1949
1950         for (i = 0; i < re_cnt; i++) {
1951                 ret = ftrace_function_set_regexp(data->ops, filter, *reset,
1952                                                  re[i], strlen(re[i]));
1953                 if (ret)
1954                         break;
1955
1956                 if (*reset)
1957                         *reset = 0;
1958         }
1959
1960         argv_free(re);
1961         return ret;
1962 }
1963
1964 static int ftrace_function_check_pred(struct filter_pred *pred)
1965 {
1966         struct ftrace_event_field *field = pred->field;
1967
1968         /*
1969          * Check the predicate for function trace, verify:
1970          *  - only '==' and '!=' is used
1971          *  - the 'ip' field is used
1972          */
1973         if ((pred->op != OP_EQ) && (pred->op != OP_NE))
1974                 return -EINVAL;
1975
1976         if (strcmp(field->name, "ip"))
1977                 return -EINVAL;
1978
1979         return 0;
1980 }
1981
1982 static int ftrace_function_set_filter_pred(struct filter_pred *pred,
1983                                            struct function_filter_data *data)
1984 {
1985         int ret;
1986
1987         /* Checking the node is valid for function trace. */
1988         ret = ftrace_function_check_pred(pred);
1989         if (ret)
1990                 return ret;
1991
1992         return __ftrace_function_set_filter(pred->op == OP_EQ,
1993                                             pred->regex.pattern,
1994                                             pred->regex.len,
1995                                             data);
1996 }
1997
1998 static bool is_or(struct prog_entry *prog, int i)
1999 {
2000         int target;
2001
2002         /*
2003          * Only "||" is allowed for function events, thus,
2004          * all true branches should jump to true, and any
2005          * false branch should jump to false.
2006          */
2007         target = prog[i].target + 1;
2008         /* True and false have NULL preds (all prog entries should jump to one */
2009         if (prog[target].pred)
2010                 return false;
2011
2012         /* prog[target].target is 1 for TRUE, 0 for FALSE */
2013         return prog[i].when_to_branch == prog[target].target;
2014 }
2015
2016 static int ftrace_function_set_filter(struct perf_event *event,
2017                                       struct event_filter *filter)
2018 {
2019         struct prog_entry *prog = rcu_dereference_protected(filter->prog,
2020                                                 lockdep_is_held(&event_mutex));
2021         struct function_filter_data data = {
2022                 .first_filter  = 1,
2023                 .first_notrace = 1,
2024                 .ops           = &event->ftrace_ops,
2025         };
2026         int i;
2027
2028         for (i = 0; prog[i].pred; i++) {
2029                 struct filter_pred *pred = prog[i].pred;
2030
2031                 if (!is_or(prog, i))
2032                         return -EINVAL;
2033
2034                 if (ftrace_function_set_filter_pred(pred, &data) < 0)
2035                         return -EINVAL;
2036         }
2037         return 0;
2038 }
2039 #else
2040 static int ftrace_function_set_filter(struct perf_event *event,
2041                                       struct event_filter *filter)
2042 {
2043         return -ENODEV;
2044 }
2045 #endif /* CONFIG_FUNCTION_TRACER */
2046
2047 int ftrace_profile_set_filter(struct perf_event *event, int event_id,
2048                               char *filter_str)
2049 {
2050         int err;
2051         struct event_filter *filter = NULL;
2052         struct trace_event_call *call;
2053
2054         mutex_lock(&event_mutex);
2055
2056         call = event->tp_event;
2057
2058         err = -EINVAL;
2059         if (!call)
2060                 goto out_unlock;
2061
2062         err = -EEXIST;
2063         if (event->filter)
2064                 goto out_unlock;
2065
2066         err = create_filter(NULL, call, filter_str, false, &filter);
2067         if (err)
2068                 goto free_filter;
2069
2070         if (ftrace_event_is_function(call))
2071                 err = ftrace_function_set_filter(event, filter);
2072         else
2073                 event->filter = filter;
2074
2075 free_filter:
2076         if (err || ftrace_event_is_function(call))
2077                 __free_filter(filter);
2078
2079 out_unlock:
2080         mutex_unlock(&event_mutex);
2081
2082         return err;
2083 }
2084
2085 #endif /* CONFIG_PERF_EVENTS */
2086
2087 #ifdef CONFIG_FTRACE_STARTUP_TEST
2088
2089 #include <linux/types.h>
2090 #include <linux/tracepoint.h>
2091
2092 #define CREATE_TRACE_POINTS
2093 #include "trace_events_filter_test.h"
2094
2095 #define DATA_REC(m, va, vb, vc, vd, ve, vf, vg, vh, nvisit) \
2096 { \
2097         .filter = FILTER, \
2098         .rec    = { .a = va, .b = vb, .c = vc, .d = vd, \
2099                     .e = ve, .f = vf, .g = vg, .h = vh }, \
2100         .match  = m, \
2101         .not_visited = nvisit, \
2102 }
2103 #define YES 1
2104 #define NO  0
2105
2106 static struct test_filter_data_t {
2107         char *filter;
2108         struct trace_event_raw_ftrace_test_filter rec;
2109         int match;
2110         char *not_visited;
2111 } test_filter_data[] = {
2112 #define FILTER "a == 1 && b == 1 && c == 1 && d == 1 && " \
2113                "e == 1 && f == 1 && g == 1 && h == 1"
2114         DATA_REC(YES, 1, 1, 1, 1, 1, 1, 1, 1, ""),
2115         DATA_REC(NO,  0, 1, 1, 1, 1, 1, 1, 1, "bcdefgh"),
2116         DATA_REC(NO,  1, 1, 1, 1, 1, 1, 1, 0, ""),
2117 #undef FILTER
2118 #define FILTER "a == 1 || b == 1 || c == 1 || d == 1 || " \
2119                "e == 1 || f == 1 || g == 1 || h == 1"
2120         DATA_REC(NO,  0, 0, 0, 0, 0, 0, 0, 0, ""),
2121         DATA_REC(YES, 0, 0, 0, 0, 0, 0, 0, 1, ""),
2122         DATA_REC(YES, 1, 0, 0, 0, 0, 0, 0, 0, "bcdefgh"),
2123 #undef FILTER
2124 #define FILTER "(a == 1 || b == 1) && (c == 1 || d == 1) && " \
2125                "(e == 1 || f == 1) && (g == 1 || h == 1)"
2126         DATA_REC(NO,  0, 0, 1, 1, 1, 1, 1, 1, "dfh"),
2127         DATA_REC(YES, 0, 1, 0, 1, 0, 1, 0, 1, ""),
2128         DATA_REC(YES, 1, 0, 1, 0, 0, 1, 0, 1, "bd"),
2129         DATA_REC(NO,  1, 0, 1, 0, 0, 1, 0, 0, "bd"),
2130 #undef FILTER
2131 #define FILTER "(a == 1 && b == 1) || (c == 1 && d == 1) || " \
2132                "(e == 1 && f == 1) || (g == 1 && h == 1)"
2133         DATA_REC(YES, 1, 0, 1, 1, 1, 1, 1, 1, "efgh"),
2134         DATA_REC(YES, 0, 0, 0, 0, 0, 0, 1, 1, ""),
2135         DATA_REC(NO,  0, 0, 0, 0, 0, 0, 0, 1, ""),
2136 #undef FILTER
2137 #define FILTER "(a == 1 && b == 1) && (c == 1 && d == 1) && " \
2138                "(e == 1 && f == 1) || (g == 1 && h == 1)"
2139         DATA_REC(YES, 1, 1, 1, 1, 1, 1, 0, 0, "gh"),
2140         DATA_REC(NO,  0, 0, 0, 0, 0, 0, 0, 1, ""),
2141         DATA_REC(YES, 1, 1, 1, 1, 1, 0, 1, 1, ""),
2142 #undef FILTER
2143 #define FILTER "((a == 1 || b == 1) || (c == 1 || d == 1) || " \
2144                "(e == 1 || f == 1)) && (g == 1 || h == 1)"
2145         DATA_REC(YES, 1, 1, 1, 1, 1, 1, 0, 1, "bcdef"),
2146         DATA_REC(NO,  0, 0, 0, 0, 0, 0, 0, 0, ""),
2147         DATA_REC(YES, 1, 1, 1, 1, 1, 0, 1, 1, "h"),
2148 #undef FILTER
2149 #define FILTER "((((((((a == 1) && (b == 1)) || (c == 1)) && (d == 1)) || " \
2150                "(e == 1)) && (f == 1)) || (g == 1)) && (h == 1))"
2151         DATA_REC(YES, 1, 1, 1, 1, 1, 1, 1, 1, "ceg"),
2152         DATA_REC(NO,  0, 1, 0, 1, 0, 1, 0, 1, ""),
2153         DATA_REC(NO,  1, 0, 1, 0, 1, 0, 1, 0, ""),
2154 #undef FILTER
2155 #define FILTER "((((((((a == 1) || (b == 1)) && (c == 1)) || (d == 1)) && " \
2156                "(e == 1)) || (f == 1)) && (g == 1)) || (h == 1))"
2157         DATA_REC(YES, 1, 1, 1, 1, 1, 1, 1, 1, "bdfh"),
2158         DATA_REC(YES, 0, 1, 0, 1, 0, 1, 0, 1, ""),
2159         DATA_REC(YES, 1, 0, 1, 0, 1, 0, 1, 0, "bdfh"),
2160 };
2161
2162 #undef DATA_REC
2163 #undef FILTER
2164 #undef YES
2165 #undef NO
2166
2167 #define DATA_CNT ARRAY_SIZE(test_filter_data)
2168
2169 static int test_pred_visited;
2170
2171 static int test_pred_visited_fn(struct filter_pred *pred, void *event)
2172 {
2173         struct ftrace_event_field *field = pred->field;
2174
2175         test_pred_visited = 1;
2176         printk(KERN_INFO "\npred visited %s\n", field->name);
2177         return 1;
2178 }
2179
2180 static void update_pred_fn(struct event_filter *filter, char *fields)
2181 {
2182         struct prog_entry *prog = rcu_dereference_protected(filter->prog,
2183                                                 lockdep_is_held(&event_mutex));
2184         int i;
2185
2186         for (i = 0; prog[i].pred; i++) {
2187                 struct filter_pred *pred = prog[i].pred;
2188                 struct ftrace_event_field *field = pred->field;
2189
2190                 WARN_ON_ONCE(!pred->fn);
2191
2192                 if (!field) {
2193                         WARN_ONCE(1, "all leafs should have field defined %d", i);
2194                         continue;
2195                 }
2196
2197                 if (!strchr(fields, *field->name))
2198                         continue;
2199
2200                 pred->fn = test_pred_visited_fn;
2201         }
2202 }
2203
2204 static __init int ftrace_test_event_filter(void)
2205 {
2206         int i;
2207
2208         printk(KERN_INFO "Testing ftrace filter: ");
2209
2210         for (i = 0; i < DATA_CNT; i++) {
2211                 struct event_filter *filter = NULL;
2212                 struct test_filter_data_t *d = &test_filter_data[i];
2213                 int err;
2214
2215                 err = create_filter(NULL, &event_ftrace_test_filter,
2216                                     d->filter, false, &filter);
2217                 if (err) {
2218                         printk(KERN_INFO
2219                                "Failed to get filter for '%s', err %d\n",
2220                                d->filter, err);
2221                         __free_filter(filter);
2222                         break;
2223                 }
2224
2225                 /* Needed to dereference filter->prog */
2226                 mutex_lock(&event_mutex);
2227                 /*
2228                  * The preemption disabling is not really needed for self
2229                  * tests, but the rcu dereference will complain without it.
2230                  */
2231                 preempt_disable();
2232                 if (*d->not_visited)
2233                         update_pred_fn(filter, d->not_visited);
2234
2235                 test_pred_visited = 0;
2236                 err = filter_match_preds(filter, &d->rec);
2237                 preempt_enable();
2238
2239                 mutex_unlock(&event_mutex);
2240
2241                 __free_filter(filter);
2242
2243                 if (test_pred_visited) {
2244                         printk(KERN_INFO
2245                                "Failed, unwanted pred visited for filter %s\n",
2246                                d->filter);
2247                         break;
2248                 }
2249
2250                 if (err != d->match) {
2251                         printk(KERN_INFO
2252                                "Failed to match filter '%s', expected %d\n",
2253                                d->filter, d->match);
2254                         break;
2255                 }
2256         }
2257
2258         if (i == DATA_CNT)
2259                 printk(KERN_CONT "OK\n");
2260
2261         return 0;
2262 }
2263
2264 late_initcall(ftrace_test_event_filter);
2265
2266 #endif /* CONFIG_FTRACE_STARTUP_TEST */