-
-
Notifications
You must be signed in to change notification settings - Fork 624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: if_match parser doesn't handle comparison of strings containing !
#1988
Comments
Marking as low priority because #1001 needs to be addressed first (work on #1879). My guess is that this has to do with Can you provide an example which doesn't use the |
You are right, the same problem exists when using conky.text = [[${color white}
TEST: ${if_match "${exec echo FRITZ!Box 7520 HI}" == "off/any"}a${else}b$endif
]] This configuration produces the same error. Is there any special meaning for the exclamation mark in |
Looked into the code, I can confirm it's a bug in the following two functions in int find_match_op(const char *expr) {
unsigned int idx;
for (idx = 0; idx < strlen(expr); idx++) {
switch (expr[idx]) {
case '=':
case '!':
if (expr[idx + 1] != '=') { return -1; }
/* falls through */
case '<':
case '>':
return idx;
}
}
return -1;
}
int get_match_type(const char *expr) {
int idx;
const char *str;
if ((idx = find_match_op(expr)) == -1) { return -1; }
str = expr + idx;
if (*str == '=' && *(str + 1) == '=') { return OP_EQ; }
if (*str == '!' && *(str + 1) == '=') { return OP_NEQ; }
if (*str == '>') {
if (*(str + 1) == '=') { return OP_GEQ; }
return OP_GT;
}
if (*str == '<') {
if (*(str + 1) == '=') { return OP_LEQ; }
return OP_LT;
}
return -1;
}
It should instead parse the first value (string or float), skip the value, skip whitespace, then parse operator, fail if wrong operator or end of text (first string not closed), skip whitespace, parse second value/operand, fail if types not comparable (handle string to number conversion), return comparison result. Workaround: use |
!
!
!
Thank you for the triage! I will use the workaround for now. Unfortunately, I don't think I can help in the development for now, but I am available for any test/experimenti :-) |
What happened?
The Wi-Fi ESSID is not escaped correctly, and it is confusing
if_match
. The execution continues, but the first code block is always matched regardless of the values (see log and config).I tested both with the Debian version (1.18) and the latest version using AppImage (1.21.4), the problem is the same.
Version
1.21.4
Which OS/distro are you seeing the problem on?
Debian
Conky config
Stack trace
No response
Relevant log output
The text was updated successfully, but these errors were encountered: