Skip to content
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

Support diff mode when using vyos_firewall_rules #222

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

sdwilsh
Copy link
Contributor

@sdwilsh sdwilsh commented Dec 13, 2021

SUMMARY

This change adds support for diff mode to vyos_firewall_rules. This can aide someone into understanding what will check when using check mode, and can help someone know what has changed when running their play (using just --diff without --check).

ISSUE TYPE
  • Feature Pull Request
COMPONENT NAME

vyos_firewall_rules

This change adds support for [diff
mode](https://docs.ansible.com/ansible/latest/user_guide/playbooks_checkmode.html#using-diff-mode)
to `vyos_firewall_rules`.  This can aide someone into understanding what
will check when using [check
mode](https://docs.ansible.com/ansible/latest/user_guide/playbooks_checkmode.html#using-check-mode),
and can help someone know what has changed when running their play
(using just `--diff` without `--check`).
Comment on lines +119 to +126
result["diff"] = {
"after": "\n".join(
sorted(self.set_state(self._module.params["config"], {}))
),
"before": "\n".join(
sorted(self.set_state(existing_firewall_rules_facts, {}))
),
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is only the right thing for overridden, so this PR needs more work. However, this got me thinking that there are two ways to accomplish this.

Commands [to be] Run

You don't get to see the commands this module (returned via results["commands"]) unless you run your play with -vvv as far as I can tell. That has a lot of other output, which makes it not useful in a lot of situations. However, we could just include those as the "after" lines in a diff, and this change would then be quite simple. It would amount to something like this:

         if self.state in self.ACTION_STATES and self._module._diff:
            result["diff"] = {
                "after": "\n".join(result["commands"]),
                "before": "",
            }

Resulting Config

This would basically generate what show configuration commands for the current state (easy) as well as the new state (hard). This would require new helper methods for deleted, merged, and replaced states that will compute what the config object would look like once all the changes we want to apply would look like. Ideally, we'd be able to share code between _state_deleted, _state_merged, and _state_replaced, but I don't actually see a reasonable way to do that.

Comparison

Option Pros Cons
Commands Run
  • Easy to implement
  • Easy to test
  • Always accurate as to what was run
  • Not really what the diff command is meant to convey
Resulting Config
  • Accurate representation of changed sate on the device
  • Hard to implement
  • Hard to test
  • Risk of being inaccurate due to divergent code paths

Despite the table outcome, I actually think the resulting config approach is the better one long-term. However, I don't want to do a bunch of work to implement that if it's not wanted. Therefore, I'm going to wait for some input from y'all before I push this further.

I'd also like to add some tests for this, but unfortunately ansible-test fails a bunch of tests for me, and there aren't really any docs that tell me how to run them locally for this module (at least that I've found). Uploading and waiting for zuul to find out if it works or not isn't a way I want to develop this.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Code re-use is actually possible here, so that's not a con of the resulting config approach after all. If we go that route, I'll do a refractor in a seperate PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@ashwini-mhatre, any thoughts here? I don't want to do a bunch of work that the project doesn't ultimately want, but I think getting check mode added will be a valuable feature.

Copy link
Contributor

Choose a reason for hiding this comment

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

@sdwilsh This seems to be a good feature in my mind as of now. Let me take 2 days to process this and discuss the same with the team and get back to you. Thank you.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@GomathiselviS, any thoughts on direction to go here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@GomathiselviS, bump for any thoughts on direction to go here. I'm still interested in solving this because I think it'll help track down an issue where I see my firewall rules always being listed as changed when I am pretty sure they are not.

@Qalthos Qalthos added the feature This issue/PR relates to a feature request. label Sep 2, 2022
@sdwilsh
Copy link
Contributor Author

sdwilsh commented Jul 4, 2024

I'm still interested in getting this change in, for what it's worth.

@gaige
Copy link

gaige commented Jul 4, 2024

Hi Shawn. We're in the process of getting things restarted here (I have some PRs that I'm going to be putting in soon as well), having only gotten control of the repository early this week. I'd recommend starting by rebasing on to the current source and checking tests to make sure you've got the baseline working.

I was able to successfully run tests with the final version before the transfer, so I expect it should be working now.

@sdwilsh
Copy link
Contributor Author

sdwilsh commented Jul 4, 2024

This PR was waiting some design feedback from the previous repo owners because I saw two different paths forward, so I guess I'm looking for your design feedback now.

@dmbaturin dmbaturin requested review from c-po and removed request for ashwini-mhatre August 12, 2024 16:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature This issue/PR relates to a feature request.
Development

Successfully merging this pull request may close these issues.

4 participants