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

throne_tracker: skip iterate if failed to open dir #1832

Merged
merged 1 commit into from
Jun 19, 2024
Merged

Conversation

5ec1cff
Copy link
Contributor

@5ec1cff 5ec1cff commented Jun 18, 2024

fix #1800

@tiann tiann merged commit f52beb9 into tiann:main Jun 19, 2024
17 checks passed
@5ec1cff 5ec1cff deleted the patch-3 branch June 19, 2024 01:24
Jprimero15 pushed a commit to Jprimero15/KernelSU that referenced this pull request Jun 19, 2024
rcmiku pushed a commit to rcmiku/KernelSU that referenced this pull request Jun 23, 2024
ryxpace pushed a commit to ryxpace/KernelSU that referenced this pull request Jun 25, 2024
@aviraxp
Copy link
Contributor

aviraxp commented Jul 2, 2024

@gooroodev can you review this?

@gooroodev
Copy link

Thanks, @aviraxp! Let's get started!

Issue Counts Table

🐞Mistake 🤪Typo 🚨Security 🚀Performance 💪Best Practices 📖Readability ❓Others
0 0 0 0 1 1 0

Summary of Proposed Changes

  • 🛠️ Changed the error handling mechanism to skip iteration instead of returning immediately when failing to open a directory.

Identified Issues

ID Type Details Severity Confidence
1 💪Best Practices Use of goto statement for error handling is generally discouraged. 🟠Medium 🟠Medium
2 📖Readability The label skip_iterate could be more descriptive. 🟡Low 🟡Low

Issue 1: Use of goto statement for error handling is generally discouraged

Explanation

Using goto for error handling can make the code harder to read and maintain. It is generally better to use structured control flow constructs like loops and conditionals.

Suggested Code Change

diff --git a/kernel/throne_tracker.c b/kernel/throne_tracker.c
index eb04c8b0f344..d7c1dae14a17 100644
--- a/kernel/throne_tracker.c
+++ b/kernel/throne_tracker.c
@@ -236,13 +236,14 @@ void search_manager(const char *path, int depth, struct list_head *uid_data)
 				file = ksu_filp_open_compat(pos->dirpath, O_RDONLY | O_NOFOLLOW, 0);
 				if (IS_ERR(file)) {
 					pr_err("Failed to open directory: %s, err: %ld\n", pos->dirpath, PTR_ERR(file));
-					goto skip_iterate;
+					list_del(&pos->list);
+					if (pos != &data)
+						kfree(pos);
+					continue;
 				}
 
 				iterate_dir(file, &ctx.ctx);
 				filp_close(file, NULL);
 			}
-
-			list_del(&pos->list);
-			if (pos != &data)
-				kfree(pos);
+			list_del(&pos->list);
+			if (pos != &data)
+				kfree(pos);
 		}

Explanation of the Fix

This change removes the goto statement and replaces it with structured control flow. If the directory cannot be opened, the code now directly deletes the list entry and continues to the next iteration.

Issue 2: The label skip_iterate could be more descriptive

Explanation

The label skip_iterate is not very descriptive and could be improved for better readability.

Suggested Code Change

If the goto statement is retained, a more descriptive label could be used:

diff --git a/kernel/throne_tracker.c b/kernel/throne_tracker.c
index eb04c8b0f344..d7c1dae14a17 100644
--- a/kernel/throne_tracker.c
+++ b/kernel/throne_tracker.c
@@ -236,13 +236,13 @@ void search_manager(const char *path, int depth, struct list_head *uid_data)
 				file = ksu_filp_open_compat(pos->dirpath, O_RDONLY | O_NOFOLLOW, 0);
 				if (IS_ERR(file)) {
 					pr_err("Failed to open directory: %s, err: %ld\n", pos->dirpath, PTR_ERR(file));
-					goto skip_iterate;
+					goto cleanup_and_continue;
 				}
 
 				iterate_dir(file, &ctx.ctx);
 				filp_close(file, NULL);
 			}
-
+cleanup_and_continue:
 			list_del(&pos->list);
 			if (pos != &data)
 				kfree(pos);

Explanation of the Fix

The label skip_iterate is changed to cleanup_and_continue to make it clearer what the goto statement is intended to do.

General Review of Code Quality and Style

The code quality is generally good, but the use of goto for error handling is not ideal. Structured control flow should be preferred. The readability could be slightly improved by using more descriptive labels if goto is retained.

--
I only arrive when I am mentioned and asked to review the pull request.
React or reply to let me know your opinion!

whyakari pushed a commit to whyakari/KernelSU that referenced this pull request Jul 7, 2024
itsHanibee pushed a commit to Dominium-Apum/kernelsu that referenced this pull request Jul 16, 2024
kutemeikito added a commit to kutemeikito/KernelSU that referenced this pull request Jul 22, 2024
* 'main' of https://github.com/tiann/KernelSU:
  build(deps): bump the npm group in /website with 3 updates (tiann#1903)
  build(deps): bump syn from 2.0.71 to 2.0.72 in /userspace/ksud in the crates group (tiann#1902)
  Upgrade rustix (tiann#1900)
  build(deps): bump the npm group in /website with 2 updates (tiann#1899)
  build(deps): bump the crates group in /userspace/ksud with 3 updates (tiann#1898)
  build(deps): bump the npm group in /website with 13 updates (tiann#1893)
  build(deps): bump the crates group in /userspace/ksud with 40 updates (tiann#1894)
  [skip ci] Group dependabot dependencies (tiann#1892)
  Upgrade zip (tiann#1891)
  build(deps): bump io.coil-kt:coil-compose from 2.6.0 to 2.7.0 in /manager (tiann#1888)
  build(deps): bump org.lsposed.libcxx:libcxx from 27.0.11718014-beta1 to 27.0.12077973 in /manager (tiann#1885)
  Upgrade deps (tiann#1886)
  build(deps-dev): bump vitepress from 1.3.0 to 1.3.1 in /website (tiann#1879)
  build(deps): bump com.google.devtools.ksp from 2.0.0-1.0.22 to 2.0.0-1.0.23 in /manager (tiann#1872)
  build(deps): bump agp from 8.5.0 to 8.5.1 in /manager (tiann#1873)
  Allow skipping commented policy (tiann#1870)
  build(deps): bump rust-embed from 8.4.0 to 8.5.0 in /userspace/ksud (tiann#1869)
  build(deps): bump clap from 4.5.8 to 4.5.9 in /userspace/ksud (tiann#1868)
  Setup Android SDK (tiann#1867)
  Upgrade gradle (tiann#1866)
  build(deps-dev): bump vitepress from 1.2.3 to 1.3.0 in /website (tiann#1865)
  Revert "ksud: [Fix] grant root to the shell in debug mode" (tiann#1860)
  ksud: upgrade zip (tiann#1859)
  ksud: [Fix] grant root to the shell in debug mode (tiann#1853)
  build(deps): bump lifecycle from 2.8.1 to 2.8.3 in /manager (tiann#1851)
  build(deps): bump clap from 4.5.7 to 4.5.8 in /userspace/ksud (tiann#1850)
  website: fix typo (tiann#1834)
  build(deps): bump android_logger from 0.13.3 to 0.14.1 in /userspace/ksud (tiann#1830)
  build(deps): bump log from 0.4.21 to 0.4.22 in /userspace/ksud (tiann#1843)
  Update resetprop (tiann#1842)
  throne_tracker: skip iterate if failed to open dir (tiann#1832)
  Translations update from Hosted Weblate (tiann#1734)
  build(deps): bump com.google.devtools.ksp from 2.0.0-1.0.21 to 2.0.0-1.0.22 in /manager (tiann#1811)
  manager: improve grammar in english (tiann#1814)
  Redirect the Feature Requests issue template tab (tiann#1788)
  website: fix typo (tiann#1807)
  build(deps): bump zip from 2.1.2 to 2.1.3 in /userspace/ksud (tiann#1810)
  build(deps): bump regex from 1.10.4 to 1.10.5 in /userspace/ksud (tiann#1815)
  build(deps): bump clap from 4.5.4 to 4.5.7 in /userspace/ksud (tiann#1817)
  build(deps): bump androidx.compose:compose-bom from 2024.05.00 to 2024.06.00 in /manager (tiann#1820)
  build(deps): bump agp from 8.4.1 to 8.5.0 in /manager (tiann#1824)
  build(deps): bump lifecycle from 2.8.0 to 2.8.1 in /manager (tiann#1782)
  website: update translations (tiann#1796)
  build(deps): bump zip-extensions from 0.6.2 to 0.7.0 in /userspace/ksud (tiann#1798)
  build(deps): bump zip from 2.1.0 to 2.1.2 in /userspace/ksud (tiann#1799)
  build(deps-dev): bump vitepress from 1.2.2 to 1.2.3 in /website (tiann#1803)
  manager: fix update no response when changelog is empty (tiann#1786)
  Convert devpts domain to ksu_file (tiann#1801)
  non-GKI:Remove maintainer Coconutat's  repositories (tiann#1794)
  从非官方支持设备中移除K-Nel-M1721 (tiann#1792)

Signed-off-by: Edwiin Kusuma Jaya <kutemeikito0905@gmail.com>
xxmustafacooTR pushed a commit to xxmustafacooTR/KernelSU that referenced this pull request Jul 24, 2024
Jbub5 pushed a commit to Jbub5/KernelSU that referenced this pull request Jul 25, 2024
Fede2782 pushed a commit to Fede2782/KernelSU that referenced this pull request Jul 27, 2024
fukiame pushed a commit to TelegramAt25/KernelSU-shukusai that referenced this pull request Aug 11, 2024
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.

kernel su 管理器中显示未激活,但是模块正常使用
5 participants