Commit 8d3e8165 authored by Tom Zanussi's avatar Tom Zanussi Committed by Steven Rostedt (VMware)

tracing: Update synth command errors

Since array types are handled differently, errors referencing them
also need to be handled differently.  Add and use a new
INVALID_ARRAY_SPEC error.  Also add INVALID_CMD and INVALID_DYN_CMD to
catch and display the correct form for badly-formed commands, which
can also be used in place of CMD_INCOMPLETE, which is removed, and
remove CMD_TOO_LONG, since it's no longer used.

Link: https://lkml.kernel.org/r/b9dd434dc6458dcff11adc6ed616fe93a8794770.1612208610.git.zanussi@kernel.orgSigned-off-by: default avatarTom Zanussi <zanussi@kernel.org>
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent c9e759b1
...@@ -23,13 +23,14 @@ ...@@ -23,13 +23,14 @@
#undef ERRORS #undef ERRORS
#define ERRORS \ #define ERRORS \
C(BAD_NAME, "Illegal name"), \ C(BAD_NAME, "Illegal name"), \
C(CMD_INCOMPLETE, "Incomplete command"), \ C(INVALID_CMD, "Command must be of the form: <name> field[;field] ..."),\
C(INVALID_DYN_CMD, "Command must be of the form: s or -:[synthetic/]<name> field[;field] ..."),\
C(EVENT_EXISTS, "Event already exists"), \ C(EVENT_EXISTS, "Event already exists"), \
C(TOO_MANY_FIELDS, "Too many fields"), \ C(TOO_MANY_FIELDS, "Too many fields"), \
C(INCOMPLETE_TYPE, "Incomplete type"), \ C(INCOMPLETE_TYPE, "Incomplete type"), \
C(INVALID_TYPE, "Invalid type"), \ C(INVALID_TYPE, "Invalid type"), \
C(INVALID_FIELD, "Invalid field"), \ C(INVALID_FIELD, "Invalid field"), \
C(CMD_TOO_LONG, "Command too long"), C(INVALID_ARRAY_SPEC, "Invalid array specification"),
#undef C #undef C
#define C(a, b) SYNTH_ERR_##a #define C(a, b) SYNTH_ERR_##a
...@@ -655,7 +656,10 @@ static struct synth_field *parse_synth_field(int argc, char **argv) ...@@ -655,7 +656,10 @@ static struct synth_field *parse_synth_field(int argc, char **argv)
size = synth_field_size(field->type); size = synth_field_size(field->type);
if (size < 0) { if (size < 0) {
synth_err(SYNTH_ERR_INVALID_TYPE, errpos(field_type)); if (array)
synth_err(SYNTH_ERR_INVALID_ARRAY_SPEC, errpos(field_name));
else
synth_err(SYNTH_ERR_INVALID_TYPE, errpos(field_type));
ret = -EINVAL; ret = -EINVAL;
goto free; goto free;
} else if (size == 0) { } else if (size == 0) {
...@@ -1174,7 +1178,7 @@ static int __create_synth_event(const char *name, const char *raw_fields) ...@@ -1174,7 +1178,7 @@ static int __create_synth_event(const char *name, const char *raw_fields)
*/ */
if (name[0] == '\0') { if (name[0] == '\0') {
synth_err(SYNTH_ERR_CMD_INCOMPLETE, 0); synth_err(SYNTH_ERR_INVALID_CMD, 0);
return -EINVAL; return -EINVAL;
} }
...@@ -1226,7 +1230,7 @@ static int __create_synth_event(const char *name, const char *raw_fields) ...@@ -1226,7 +1230,7 @@ static int __create_synth_event(const char *name, const char *raw_fields)
} }
if (n_fields == 0) { if (n_fields == 0) {
synth_err(SYNTH_ERR_CMD_INCOMPLETE, 0); synth_err(SYNTH_ERR_INVALID_CMD, 0);
ret = -EINVAL; ret = -EINVAL;
goto err; goto err;
} }
...@@ -1410,13 +1414,13 @@ static int create_or_delete_synth_event(const char *raw_command) ...@@ -1410,13 +1414,13 @@ static int create_or_delete_synth_event(const char *raw_command)
ret = check_command(raw_command); ret = check_command(raw_command);
if (ret) { if (ret) {
synth_err(SYNTH_ERR_CMD_INCOMPLETE, 0); synth_err(SYNTH_ERR_INVALID_CMD, 0);
return ret; return ret;
} }
p = strpbrk(raw_command, " \t"); p = strpbrk(raw_command, " \t");
if (!p && raw_command[0] != '!') { if (!p && raw_command[0] != '!') {
synth_err(SYNTH_ERR_CMD_INCOMPLETE, 0); synth_err(SYNTH_ERR_INVALID_CMD, 0);
ret = -EINVAL; ret = -EINVAL;
goto free; goto free;
} }
...@@ -1993,8 +1997,10 @@ static int create_synth_event(const char *raw_command) ...@@ -1993,8 +1997,10 @@ static int create_synth_event(const char *raw_command)
last_cmd_set(raw_command); last_cmd_set(raw_command);
p = strpbrk(raw_command, " \t"); p = strpbrk(raw_command, " \t");
if (!p) if (!p) {
synth_err(SYNTH_ERR_INVALID_CMD, 0);
return -EINVAL; return -EINVAL;
}
fields = skip_spaces(p); fields = skip_spaces(p);
...@@ -2007,8 +2013,10 @@ static int create_synth_event(const char *raw_command) ...@@ -2007,8 +2013,10 @@ static int create_synth_event(const char *raw_command)
/* This interface accepts group name prefix */ /* This interface accepts group name prefix */
if (strchr(name, '/')) { if (strchr(name, '/')) {
len = str_has_prefix(name, SYNTH_SYSTEM "/"); len = str_has_prefix(name, SYNTH_SYSTEM "/");
if (len == 0) if (len == 0) {
synth_err(SYNTH_ERR_INVALID_DYN_CMD, 0);
return -EINVAL; return -EINVAL;
}
name += len; name += len;
} }
...@@ -2016,7 +2024,7 @@ static int create_synth_event(const char *raw_command) ...@@ -2016,7 +2024,7 @@ static int create_synth_event(const char *raw_command)
ret = check_command(raw_command + len); ret = check_command(raw_command + len);
if (ret) { if (ret) {
synth_err(SYNTH_ERR_CMD_INCOMPLETE, 0); synth_err(SYNTH_ERR_INVALID_CMD, 0);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment