a->op == b->op &&
a->op == OP_MATCH &&
a->match_type == b->match_type &&
- a->match_type == MATCH_TYPE_PLAIN &&
a->attr_subst_type == b->attr_subst_type &&
a->attr_match_remove_trailing_whitespace == b->attr_match_remove_trailing_whitespace &&
token_type_and_data_eq(a, b)))
return false;
- NULSTR_FOREACH(i, a->value)
- if (nulstr_contains(b->value, i))
- return false;
+ if (a->match_type == MATCH_TYPE_PLAIN) {
+ NULSTR_FOREACH(i, a->value)
+ if (nulstr_contains(b->value, i))
+ return false;
+ return true;
+ }
- return true;
+ if (a->match_type == MATCH_TYPE_GLOB) {
+ NULSTR_FOREACH(i, a->value) {
+ size_t i_n = strcspn(i, GLOB_CHARS);
+ if (i_n == 0)
+ return false;
+ NULSTR_FOREACH(j, b->value) {
+ size_t j_n = strcspn(j, GLOB_CHARS);
+ if (j_n == 0 || strneq(i, j, MIN(i_n, j_n)))
+ return false;
+ }
+
+ }
+ return true;
+ }
+
+ return false;
}
static void udev_check_unused_labels(UdevRuleLine *line) {
# shellcheck disable=SC2016
test_syntax_error 'ENV{DISKSEQ}=="?*", ENV{DEVTYPE}!="partition", ENV{DISKSEQ}!="?*", ENV{ID_IGNORE_DISKSEQ}!="1", SYMLINK+="disk/by-diskseq/$env{DISKSEQ}"' \
'conflicting match expressions, the line takes no effect'
+test_syntax_error 'ACTION=="a*", ACTION=="bc*", NAME="d"' 'conflicting match expressions, the line takes no effect'
+test_syntax_error 'ACTION=="a*|bc*", ACTION=="d*|ef*", NAME="g"' 'conflicting match expressions, the line takes no effect'
test_syntax_error 'KERNEL!="", KERNEL=="?*", NAME="a"' 'duplicate expressions'
test_syntax_error 'KERNEL=="|a|b", KERNEL=="b|a|", NAME="c"' 'duplicate expressions'
# shellcheck disable=SC2016
KERNEL=="a|b", KERNEL!="a|c", NAME="d"
KERNEL!="a", KERNEL!="b", NAME="c"
KERNEL=="|a", KERNEL=="|b", NAME="c"
+KERNEL=="*", KERNEL=="a*", NAME="b"
+KERNEL=="a*", KERNEL=="c*|ab*", NAME="d"
EOF
assert_0 "${rules}"