Skip to content

Commit 63f0b67

Browse files
Modified USBguard append-rule to add support to the beginning of the configuration file (-a 0 command)
Signed-off-by: [email protected] <[email protected]>
1 parent dd53ef5 commit 63f0b67

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/Library/public/usbguard/Policy.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,17 @@ namespace usbguard
6060
USBGUARD_LOG(Trace) << "parent_id=" << parent_id;
6161
auto rule = std::make_shared<Rule>(_rule);
6262

63+
if (parent_id == 0) {
64+
auto ruleset = _rulesets_ptr.front();
65+
66+
if (rule->getRuleID() == Rule::DefaultID) {
67+
assignID(rule);
68+
}
69+
70+
auto rules = ruleset->getRules();
71+
return ruleset->appendRule(*rule, 0);
72+
}
73+
6374
// If the parent_id is set to Rule::LastID then we get the the ID of the last rule in rulesets
6475
if (parent_id == Rule::LastID) {
6576
auto ruleset = _rulesets_ptr.back();

0 commit comments

Comments
 (0)