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

fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic #6436

Merged
merged 11 commits into from
Jun 6, 2024

Conversation

GAtom22
Copy link
Contributor

@GAtom22 GAtom22 commented May 30, 2024

Description

This PR introduces the changes to avoid triggering a panic during ICA host keeper instantiation.
The change gets the protofiles using AllowUnresolvable = true instead of using the gogoproto.MergedRegistry() function that returns the files using the AllowUnresolvable = false

closes: #6435


Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.

  • Targeted PR against the correct branch (see CONTRIBUTING.md).
  • Linked to GitHub issue with discussion and accepted design, OR link to spec that describes this work.
  • Code follows the module structure standards and Go style guide.
  • Wrote unit and integration tests.
  • Updated relevant documentation (docs/).
  • Added relevant godoc comments.
  • Provide a conventional commit message to follow the repository standards.
  • Include a descriptive changelog entry when appropriate. This may be left to the discretion of the PR reviewers. (e.g. chores should be omitted from changelog)
  • Re-reviewed Files changed in the GitHub PR explorer.
  • Review SonarCloud Report in the comment section below once CI passes.

Summary by CodeRabbit

  • Refactor
    • Enhanced stability and error handling in the interchain accounts module to prevent issues related to proto files.

Copy link
Contributor

coderabbitai bot commented May 30, 2024

Walkthrough

The recent changes in the apps/27-interchain-accounts module involve a refactor to update the instantiation method of the ICA host keeper. This update aims to prevent application panics related to unresolved proto file imports by using protodesc.FileOptions with AllowUnresolvable set to true. This enhances stability and error handling in the codebase.

Changes

File Path Change Summary
CHANGELOG.md Updated to reflect the refactor in the apps/27-interchain-accounts module to improve stability and error handling.
modules/apps/27-interchain-accounts/host/keeper/keeper.go Modified to import protodesc and use protodesc.FileOptions with AllowUnresolvable set to true in newModuleQuerySafeAllowList function.

Sequence Diagram(s) (Beta)

sequenceDiagram
    participant Application
    participant ICA_Host_Keeper
    participant ProtoRegistry

    Application->>ICA_Host_Keeper: Instantiate
    ICA_Host_Keeper->>ProtoRegistry: Register File with AllowUnresolvable = true
    ProtoRegistry-->>ICA_Host_Keeper: File Registered
    ICA_Host_Keeper-->>Application: Instantiation Successful
Loading

Assessment against linked issues

Objective Addressed Explanation
Prevent application panics on ICA host keeper instantiation (Issue #6435)
Ensure newModuleQuerySafeAllowList function uses protodesc.FileOptions with AllowUnresolvable set to true (Issue #6435)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between e67e30b and 5100331.

Files selected for processing (1)
  • modules/apps/27-interchain-accounts/host/keeper/keeper.go (2 hunks)
Additional context used
Path-based instructions (1)
modules/apps/27-interchain-accounts/host/keeper/keeper.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

Additional comments not posted (1)
modules/apps/27-interchain-accounts/host/keeper/keeper.go (1)

280-288: Refactor newModuleQuerySafeAllowList to prevent panic by setting AllowUnresolvable to true.

This change effectively addresses the issue described in the PR, ensuring that the application does not panic due to unresolved imports. It's a crucial fix for stability, especially during the instantiation of the ICA host keeper.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Outside diff range and nitpick comments (5)
CHANGELOG.md (5)

Line range hint 57-57: Remove trailing spaces to maintain clean and consistent formatting in the markdown file.


Line range hint 219-219: Remove trailing spaces to maintain clean and consistent formatting in the markdown file.


Line range hint 269-269: Remove trailing spaces to maintain clean and consistent formatting in the markdown file.


70-70: Remove the extra blank line to maintain a consistent structure in the markdown file.


Line range hint 204-204: Consider replacing the bare URL with a markdown link to improve the readability and presentation of the document.

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 5100331 and 9d8b5aa.

Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Additional context used
Path-based instructions (1)
CHANGELOG.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

Markdownlint
CHANGELOG.md

57-57: Expected: 0 or 2; Actual: 1
Trailing spaces


219-219: Expected: 0 or 2; Actual: 1
Trailing spaces


269-269: Expected: 0 or 2; Actual: 1
Trailing spaces


70-70: Expected: 1; Actual: 2
Multiple consecutive blank lines


204-204: null
Bare URL used

Additional comments not posted (1)
CHANGELOG.md (1)

68-69: The changelog entry for PR #6436 correctly documents the changes made to the ICA host keeper instantiation method to prevent panics related to proto files.

Copy link
Contributor

@DimitrisJim DimitrisJim left a comment

Choose a reason for hiding this comment

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

Interesting! This was missed in our review/tests, we should probably add a test for it too if possible (feel free to leave that as a follow up to us).

Thanks a lot for the report and the fix.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

Outside diff range and nitpick comments (3)
CHANGELOG.md (3)

Line range hint 220-220: Remove trailing spaces to maintain clean and consistent formatting in the markdown file.

- * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files. 
+ * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files.
Tools
Markdownlint

71-71: Expected: 1; Actual: 2
Multiple consecutive blank lines


Line range hint 270-270: Remove trailing spaces to maintain clean and consistent formatting in the markdown file.

- * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files. 
+ * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files.
Tools
Markdownlint

71-71: Expected: 1; Actual: 2
Multiple consecutive blank lines


Line range hint 205-205: Consider replacing the bare URL with a markdown link for better readability and to adhere to best practices.

- * [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files.
+ * [\#6436](https://github.com/cosmos/ibc-go/pull/6436) [Refactor ICA host keeper instantiation method to avoid panic related to proto files.](https://github.com/cosmos/ibc-go/pull/6436)
Tools
Markdownlint

71-71: Expected: 1; Actual: 2
Multiple consecutive blank lines

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9d8b5aa and 9b4eba7.

Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Additional context used
Path-based instructions (1)
CHANGELOG.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

Markdownlint
CHANGELOG.md

220-220: Expected: 0 or 2; Actual: 1
Trailing spaces


270-270: Expected: 0 or 2; Actual: 1
Trailing spaces


71-71: Expected: 1; Actual: 2
Multiple consecutive blank lines


205-205: null
Bare URL used

Additional comments not posted (1)
CHANGELOG.md (1)

69-70: The changelog entry correctly summarizes the changes made to the ICA host keeper instantiation method to prevent panics related to proto files.

CHANGELOG.md Outdated Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Outside diff range and nitpick comments (3)
CHANGELOG.md (3)

Line range hint 220-220: Remove trailing spaces to maintain consistent formatting.

- * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files. 
+ * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files.
Tools
Markdownlint

71-71: Expected: 1; Actual: 2 (MD012, no-multiple-blanks)
Multiple consecutive blank lines


Line range hint 270-270: Remove trailing spaces to maintain consistent formatting.

- * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files. 
+ * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files.
Tools
Markdownlint

71-71: Expected: 1; Actual: 2 (MD012, no-multiple-blanks)
Multiple consecutive blank lines


Line range hint 205-205: Avoid using bare URLs. Provide a descriptive hyperlink text.

- https://github.com/cosmos/cosmos-sdk/releases/tag/v0.40.0
+ [Cosmos SDK v0.40.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.40.0)
Tools
Markdownlint

71-71: Expected: 1; Actual: 2 (MD012, no-multiple-blanks)
Multiple consecutive blank lines

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 9b4eba7 and ac95e2f.

Files selected for processing (1)
  • CHANGELOG.md (1 hunks)
Additional context used
Path-based instructions (1)
CHANGELOG.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

Markdownlint
CHANGELOG.md

220-220: Expected: 0 or 2; Actual: 1 (MD009, no-trailing-spaces)
Trailing spaces


270-270: Expected: 0 or 2; Actual: 1 (MD009, no-trailing-spaces)
Trailing spaces


71-71: Expected: 1; Actual: 2 (MD012, no-multiple-blanks)
Multiple consecutive blank lines


205-205: null (MD034, no-bare-urls)
Bare URL used

Additional comments not posted (1)
CHANGELOG.md (1)

71-71: Remove extra blank line to maintain consistent spacing in the markdown file.

-

Likely invalid or redundant comment.

Tools
Markdownlint

71-71: Expected: 1; Actual: 2 (MD012, no-multiple-blanks)
Multiple consecutive blank lines

@colin-axner colin-axner requested review from srdtrk and removed request for charleenfei June 5, 2024 10:10
Copy link
Contributor

@colin-axner colin-axner left a comment

Choose a reason for hiding this comment

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

Thanks @GAtom22 for explaining the issue and providing a fix! I'm not sure I fully understand why this issue occurs and if there's other solutions that would avoid it, but I am fine with this solution to move things forward

CHANGELOG.md Show resolved Hide resolved
modules/apps/27-interchain-accounts/host/keeper/keeper.go Outdated Show resolved Hide resolved
@colin-axner colin-axner added the priority PRs that need prompt reviews label Jun 5, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Outside diff range and nitpick comments (3)
CHANGELOG.md (3)

Line range hint 222-222: Remove trailing spaces to adhere to Markdown best practices.

- * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files. 
+ * (apps/27-interchain-accounts) [\#6436](https://github.com/cosmos/ibc-go/pull/6436) Refactor ICA host keeper instantiation method to avoid panic related to proto files.

Line range hint 272-272: Remove trailing spaces to adhere to Markdown best practices.

- * (apps/27-interchain-accounts) [\#5785](https://github.com/cosmos/ibc-go/pull/5785) Introduce a new tx message that ICA host submodule can use to query the chain (only those marked with `module_query_safe`) and write the responses to the acknowledgement. 
+ * (apps/27-interchain-accounts) [\#5785](https://github.com/cosmos/ibc-go/pull/5785) Introduce a new tx message that ICA host submodule can use to query the chain (only those marked with `module_query_safe`) and write the responses to the acknowledgement.

Line range hint 207-207: Enclose bare URL in angle brackets to adhere to Markdown best practices.

- * (apps/27-interchain-accounts) [\#5633](https://github.com/cosmos/ibc-go/pull/5633) Allow new ICA channels to use unordered ordering.
+ * (apps/27-interchain-accounts) [\#5633](<https://github.com/cosmos/ibc-go/pull/5633>) Allow new ICA channels to use unordered ordering.
Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between ac95e2f and 3bc2c83.

Files selected for processing (2)
  • CHANGELOG.md (1 hunks)
  • modules/apps/27-interchain-accounts/host/keeper/keeper.go (2 hunks)
Additional context used
Path-based instructions (2)
modules/apps/27-interchain-accounts/host/keeper/keeper.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

CHANGELOG.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

golangci-lint
modules/apps/27-interchain-accounts/host/keeper/keeper.go

107-107: func Keeper.getConnectionID is unused (unused)


116-116: func Keeper.setPort is unused (unused)


122-122: func Keeper.hasCapability is unused (unused)


143-143: func Keeper.getAppMetadata is unused (unused)

Markdownlint
CHANGELOG.md

222-222: Expected: 0 or 2; Actual: 1 (MD009, no-trailing-spaces)
Trailing spaces


272-272: Expected: 0 or 2; Actual: 1 (MD009, no-trailing-spaces)
Trailing spaces


207-207: null (MD034, no-bare-urls)
Bare URL used

Additional comments not posted (1)
modules/apps/27-interchain-accounts/host/keeper/keeper.go (1)

280-288: The refactoring of newModuleQuerySafeAllowList to use protodesc.FileOptions with AllowUnresolvable = true is a crucial improvement. This change effectively addresses the issue of application panics due to unresolved imports, aligning with the PR objectives.

Consider adding a comment explaining why AllowUnresolvable is set to true, as suggested in a previous review. This will enhance code readability and maintainability.

@DimitrisJim DimitrisJim enabled auto-merge (squash) June 6, 2024 07:23
@DimitrisJim DimitrisJim merged commit a16c549 into cosmos:main Jun 6, 2024
74 of 77 checks passed
mergify bot pushed a commit that referenced this pull request Jun 6, 2024
…6436)

* fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic due to AllowUnresolvable field

* add changelog entry

* Apply suggestions from code review

Co-authored-by: colin axnér <[email protected]>

---------

Co-authored-by: Carlos Rodriguez <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
Co-authored-by: colin axnér <[email protected]>
(cherry picked from commit a16c549)

# Conflicts:
#	CHANGELOG.md
mergify bot pushed a commit that referenced this pull request Jun 6, 2024
…6436)

* fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic due to AllowUnresolvable field

* add changelog entry

* Apply suggestions from code review

Co-authored-by: colin axnér <[email protected]>

---------

Co-authored-by: Carlos Rodriguez <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
Co-authored-by: colin axnér <[email protected]>
(cherry picked from commit a16c549)

# Conflicts:
#	CHANGELOG.md
crodriguezvega pushed a commit that referenced this pull request Jun 7, 2024
…ackport #6436) (#6519)

* fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic (#6436)

* fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic due to AllowUnresolvable field

* add changelog entry

* Apply suggestions from code review

Co-authored-by: colin axnér <[email protected]>

---------

Co-authored-by: Carlos Rodriguez <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
Co-authored-by: colin axnér <[email protected]>
(cherry picked from commit a16c549)

# Conflicts:
#	CHANGELOG.md

* fix conflicts in changelog.

---------

Co-authored-by: Tom <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
crodriguezvega pushed a commit that referenced this pull request Jun 7, 2024
…ackport #6436) (#6520)

* fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic (#6436)

* fix(ica-host): refactor newModuleQuerySafeAllowList to avoid panic due to AllowUnresolvable field

* add changelog entry

* Apply suggestions from code review

Co-authored-by: colin axnér <[email protected]>

---------

Co-authored-by: Carlos Rodriguez <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
Co-authored-by: colin axnér <[email protected]>
(cherry picked from commit a16c549)

# Conflicts:
#	CHANGELOG.md

* fix conflicts in changelog.

---------

Co-authored-by: Tom <[email protected]>
Co-authored-by: DimitrisJim <[email protected]>
@julienrbrt
Copy link
Member

It doesn't look fixed in 8.5.0 FYI: ignite/cli#4318 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Application panics on ICA host keeper instantiation
5 participants