Skip to content

Conversation

@dnwiebe
Copy link
Collaborator

@dnwiebe dnwiebe commented Oct 28, 2025

Note

Medium Risk
Introduces a new persisted config value and bumps DB schema to v12 with a migration, which can affect node startup/migrations and rate-pack validation. Remaining changes are primarily test/integration stability tweaks and small refactors/logging.

Overview
Adds rate-pack limits as a first-class persisted setting. Introduces DEFAULT_RATE_PACK_LIMITS/RatePackLimits, stores rate_pack_limits in the DB on init, and bumps CURRENT_SCHEMA_VERSION to 12 with a new migration_11_to_12 inserting the default limits.

Updates configuration plumbing and tests. PersistentConfiguration gains rate_pack_limits() with strict parsing/ordering checks, the daemon’s ConfigDaoNull now supplies a default, and setup-reporting tests update expected rate-pack values (scaled to larger wei-like numbers).

Stability/refactor cleanup. Multinode tests are made less flaky (timeouts/sleeps, different external test host, clearer mismatch diagnostics), Docker network creation now retries, gossip/dot-graph rendering gets minor API/formatting tweaks, and accountant charging/logging is refactored to compute total_charge once and include it in debug output.

Written by Cursor Bugbot for commit 53cadb4. This will update automatically on new commits. Configure here.

cursor[bot]

This comment was marked as outdated.

Copy link
Collaborator

@czarte czarte left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am still uncertain, this will protect the MASQ Foundation network, because if someone want's to set rate-pack below the limit, it is just one change and cargo build away from doing so and network does not even aknowledge this. I woud like to propose: make an debut_handler rule, that if the debuting node is in standard, or originate-only mode, and have rate pack below (or above) the limits, his debut is dropped on the flor

@kauri-hero
Copy link
Contributor

Hey @dnwiebe @czarte - I agree with @czarte comments to add this additional checking in the handlers to ensure Nodes don't have rate-packs outside of the defined limits now, and can be done without too much additional work.

This will cover older versions of Node joining network with rates outside the hard-coded limits

Copy link

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

put it to git ignore

@@ -1412,6 +1854,58 @@ impl GossipAcceptorReal {
debut_target_node_addr.clone(),
))
}

fn validate_new_version(
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hint: what about name: validate_standard_nodes_requirements
reason: in gossip we refering with version to NeighborhoodDatabase version, so it seems bit confusing name for me here

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I decided on validate_incoming_agr(); I think that's pretty clear.

let (mut valid_agrs, mut bans) = so_far;
if &agr.inner.public_key == database.root_key() {
// Shouldn't ever happen; but an evil Node could try it
// valid_agrs.push(agr);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

commented out code?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gone.

Qualification::Malformed(malefactor) => {
let (public_key_opt, ip_address_opt, earning_wallet_opt) =
match agrs.iter().find(|agr| {
agr.node_addr_opt.as_ref().map(|na| na.ip_addr())
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: I would like to see the tests of malefactor claiming our own ip, that this ip is not comming in here

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In method extract_malefactors it looks like we are using agr ip in case we malefactor him for claiming our own IP

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand this issue. I'll ask you about it.

let (gossip, gossip_source) = make_introduction(2345, 3456);
let dest_root = make_node_record(7878, true);
let mut dest_db = db_from_node(&dest_root);
// These don't count because they're half-only neighbors. Will they be ignored?
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Due to Ban and Log message those are ignored. shout the question stay?

return;
}

trace!(self.logger, "Contents: {}", agrs_to_string(agrs.as_slice()));
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this necessary here or is leftover from dev?

.rate_pack_limits_result(Ok(RatePackLimits::test_default())),
));
subject.data_directory = data_dir;
// subject.data_directory = data_dir;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

commented out code

);
subject.data_directory = data_dir.to_path_buf();
subject.connect_database();
// subject.data_directory = data_dir.to_path_buf();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

commented out code

}
}

pub struct PersistentConfigurationFactoryTest {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you said, this is Mock, not Test

}
}

impl NodeRecord {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this really necessary?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants