mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 23:51:28 +03:00
bus: we now support path_namespace=/
Our bloom-filters support root-path matching. Make sure we properly add the path_namespace= tag.
This commit is contained in:
parent
744dccdd36
commit
26589352b2
@ -1291,10 +1291,8 @@ int bus_add_match_internal_kernel(
|
||||
break;
|
||||
|
||||
case BUS_MATCH_PATH_NAMESPACE:
|
||||
if (!streq(c->value_str, "/")) {
|
||||
bloom_add_pair(bloom, bus->bloom_size, bus->bloom_n_hash, "path-slash-prefix", c->value_str);
|
||||
using_bloom = true;
|
||||
}
|
||||
bloom_add_pair(bloom, bus->bloom_size, bus->bloom_n_hash, "path-slash-prefix", c->value_str);
|
||||
using_bloom = true;
|
||||
break;
|
||||
|
||||
case BUS_MATCH_ARG...BUS_MATCH_ARG_LAST: {
|
||||
|
@ -123,6 +123,7 @@ int main(int argc, char *argv[]) {
|
||||
test_one("/foo/bar/waldo", "waldo.com", "Piep", false, "foobar", "path_namespace='/foo'", true);
|
||||
test_one("/foo/bar/waldo", "waldo.com", "Piep", false, "foobar", "path_namespace='/'", true);
|
||||
test_one("/foo/bar/waldo", "waldo.com", "Piep", false, "foobar", "path_namespace='/quux'", false);
|
||||
test_one("/", "waldo.com", "Piep", false, "foobar", "path_namespace='/'", true);
|
||||
|
||||
test_one("/foo/bar/waldo", "waldo.com", "Piep", false, "foobar", "path='/foo/bar/waldo/'", false);
|
||||
test_one("/foo/bar/waldo", "waldo.com", "Piep", false, "foobar", "path='/foo/'", false);
|
||||
|
Loading…
Reference in New Issue
Block a user