Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 339030
b: refs/heads/master
c: 534123f
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Olsa authored and Arnaldo Carvalho de Melo committed Nov 14, 2012
1 parent dcd6811 commit 5a65cf0
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3fe4430dd66837d8fcdb63c167e908655fc842e3
refs/heads/master: 534123f458f196bcc269f97d20ccf125925c2e7b
24 changes: 24 additions & 0 deletions trunk/tools/perf/util/parse-events.c
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,27 @@ static int get_event_modifier(struct event_modifier *mod, char *str,
return 0;
}

/*
* Basic modifier sanity check to validate it contains only one
* instance of any modifier (apart from 'p') present.
*/
static int check_modifier(char *str)
{
char *p = str;

/* The sizeof includes 0 byte as well. */
if (strlen(str) > (sizeof("ukhGHppp") - 1))
return -1;

while (*p) {
if (*p != 'p' && strchr(p + 1, *p))
return -1;
p++;
}

return 0;
}

int parse_events__modifier_event(struct list_head *list, char *str, bool add)
{
struct perf_evsel *evsel;
Expand All @@ -730,6 +751,9 @@ int parse_events__modifier_event(struct list_head *list, char *str, bool add)
if (str == NULL)
return 0;

if (check_modifier(str))
return -EINVAL;

if (!add && get_event_modifier(&mod, str, NULL))
return -EINVAL;

Expand Down
2 changes: 1 addition & 1 deletion trunk/tools/perf/util/parse-events.l
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ num_hex 0x[a-fA-F0-9]+
num_raw_hex [a-fA-F0-9]+
name [a-zA-Z_*?][a-zA-Z0-9_*?]*
name_minus [a-zA-Z_*?][a-zA-Z0-9\-_*?]*
modifier_event [ukhpGH]{1,8}
modifier_event [ukhpGH]+
modifier_bp [rwx]{1,3}

%%
Expand Down

0 comments on commit 5a65cf0

Please sign in to comment.