blob: 88f1d780fe12690f828b2b8176cd0e05d46056d2 [file] [log] [blame]
bigbiff22851b92021-09-01 16:46:57 -04001#include "kernel_module_loader.hpp"
Adithya Ra327aa72021-12-19 00:49:54 +05302#include "common.h"
bigbiff22851b92021-09-01 16:46:57 -04003
bigbiffe3aa02e2021-10-01 13:07:38 -04004const std::vector<std::string> kernel_modules_requested = TWFunc::split_string(EXPAND(TW_LOAD_VENDOR_MODULES), ' ', true);
5
bigbiff850fa282021-10-09 12:37:29 -04006bool KernelModuleLoader::Load_Vendor_Modules() {
7 // check /lib/modules (ramdisk vendor_boot)
8 // check /lib/modules/N.N (ramdisk vendor_boot)
9 // check /lib/modules/N.N-gki (ramdisk vendor_boot)
10 // check /vendor/lib/modules (ramdisk)
11 // check /vendor/lib/modules/1.1 (ramdisk prebuilt modules)
12 // check /vendor/lib/modules/N.N (vendor mounted)
13 // check /vendor/lib/modules/N.N-gki (vendor mounted)
bigbiff8c52c872022-04-10 17:34:46 -040014 // check /vendor_dlkm/lib/modules (vendor_dlkm mounted)
bigbiff850fa282021-10-09 12:37:29 -040015 int modules_loaded = 0;
bigbiff22851b92021-09-01 16:46:57 -040016
bigbiff850fa282021-10-09 12:37:29 -040017 LOGINFO("Attempting to load modules\n");
18 std::string vendor_base_dir(VENDOR_MODULE_DIR);
19 std::string base_dir(VENDOR_BOOT_MODULE_DIR);
bigbiff8c52c872022-04-10 17:34:46 -040020 std::string vendor_dlkm_base_dir(VENDOR_DLKM_MODULE_DIR);
bigbiff850fa282021-10-09 12:37:29 -040021 std::vector<std::string> module_dirs;
22 std::vector<std::string> vendor_module_dirs;
bigbiff22851b92021-09-01 16:46:57 -040023
bigbiff850fa282021-10-09 12:37:29 -040024 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
bigbiff8c52c872022-04-10 17:34:46 -040025 TWPartition* ven_dlkm = PartitionManager.Find_Partition_By_Path("/vendor_dlkm");
bigbiff850fa282021-10-09 12:37:29 -040026 vendor_module_dirs.push_back(VENDOR_MODULE_DIR);
27 vendor_module_dirs.push_back(vendor_base_dir + "/1.1");
bigbiff22851b92021-09-01 16:46:57 -040028
bigbiff850fa282021-10-09 12:37:29 -040029 module_dirs.push_back(base_dir);
bigbiff22851b92021-09-01 16:46:57 -040030
bigbiff850fa282021-10-09 12:37:29 -040031 struct utsname uts;
32 if (uname(&uts)) {
33 LOGERR("Unable to query kernel for version info\n");
34 }
bigbiff22851b92021-09-01 16:46:57 -040035
bigbiff850fa282021-10-09 12:37:29 -040036 std::string rls(uts.release);
37 std::vector<std::string> release = TWFunc::split_string(rls, '.', true);
38 int expected_module_count = kernel_modules_requested.size();
39 module_dirs.push_back(base_dir + "/" + release[0] + "." + release[1]);
Captain Throwbackfd464d52023-08-18 10:54:41 -040040#ifndef TW_LOAD_VENDOR_MODULES_EXCLUDE_GKI
sekaiacge86b9c72021-12-31 19:30:44 +080041 std::string gki = "/" + release[0] + "." + release[1] + "-gki";
42 module_dirs.push_back(base_dir + gki);
43 vendor_module_dirs.push_back(vendor_base_dir + gki);
Captain Throwbackfd464d52023-08-18 10:54:41 -040044#endif
bigbiff22851b92021-09-01 16:46:57 -040045
bigbiff850fa282021-10-09 12:37:29 -040046 for (auto&& module_dir:module_dirs) {
47 modules_loaded += Try_And_Load_Modules(module_dir, false);
48 if (modules_loaded >= expected_module_count) goto exit;
49 }
bigbiff22851b92021-09-01 16:46:57 -040050
bigbiff850fa282021-10-09 12:37:29 -040051 for (auto&& module_dir:vendor_module_dirs) {
52 modules_loaded += Try_And_Load_Modules(module_dir, false);
53 if (modules_loaded >= expected_module_count) goto exit;
54 }
bigbiff22851b92021-09-01 16:46:57 -040055
bigbiff850fa282021-10-09 12:37:29 -040056 if (ven) {
57 LOGINFO("Checking mounted /vendor\n");
58 ven->Mount(true);
59 }
bigbiff8c52c872022-04-10 17:34:46 -040060 if (ven_dlkm) {
61 LOGINFO("Checking mounted /vendor_dlkm\n");
62 ven_dlkm->Mount(true);
63 }
bigbiff22851b92021-09-01 16:46:57 -040064
bigbiff850fa282021-10-09 12:37:29 -040065 for (auto&& module_dir:vendor_module_dirs) {
66 modules_loaded += Try_And_Load_Modules(module_dir, true);
67 if (modules_loaded >= expected_module_count) goto exit;
68 }
bigbiff22851b92021-09-01 16:46:57 -040069
bigbiff8c52c872022-04-10 17:34:46 -040070 modules_loaded += Try_And_Load_Modules(vendor_dlkm_base_dir, true);
71 if (modules_loaded >= expected_module_count) goto exit;
72
bigbiffe3aa02e2021-10-01 13:07:38 -040073exit:
bigbiff850fa282021-10-09 12:37:29 -040074 if (ven)
75 ven->UnMount(false);
bigbiff8c52c872022-04-10 17:34:46 -040076 if (ven_dlkm)
77 ven_dlkm->UnMount(false);
bigbiff22851b92021-09-01 16:46:57 -040078
Adithya Ra327aa72021-12-19 00:49:54 +053079 android::base::SetProperty("twrp.modules.loaded", "true");
80
sekaiacg997ff732022-06-24 11:04:49 +080081#ifdef TW_BATTERY_SYSFS_WAIT_SECONDS
82 TWFunc::Wait_For_Battery(std::chrono::seconds(TW_BATTERY_SYSFS_WAIT_SECONDS));
83#endif
Adithya Ra327aa72021-12-19 00:49:54 +053084
bigbiff22851b92021-09-01 16:46:57 -040085 return true;
86}
87
bigbiff850fa282021-10-09 12:37:29 -040088int KernelModuleLoader::Try_And_Load_Modules(std::string module_dir, bool vendor_is_mounted) {
89 LOGINFO("Checking directory: %s\n", module_dir.c_str());
90 int modules_loaded = 0;
91 std::string dest_module_dir;
92 dest_module_dir = "/tmp" + module_dir;
93 TWFunc::Recursive_Mkdir(dest_module_dir);
94 Copy_Modules_To_Tmpfs(module_dir);
95 if (!Write_Module_List(dest_module_dir))
96 return kernel_modules_requested.size();
97 if (!vendor_is_mounted && module_dir == "/vendor/lib/modules") {
98 module_dir = "/lib/modules";
99 }
100 LOGINFO("mounting %s on %s\n", dest_module_dir.c_str(), module_dir.c_str());
101 if (mount(dest_module_dir.c_str(), module_dir.c_str(), "", MS_BIND, NULL) == 0) {
nijel84b185322022-01-03 14:28:39 -0500102 Modprobe m({module_dir}, "modules.load.twrp", false);
bigbiff850fa282021-10-09 12:37:29 -0400103 m.LoadListedModules(false);
104 modules_loaded = m.GetModuleCount();
105 umount2(module_dir.c_str(), MNT_DETACH);
106 LOGINFO("Modules Loaded: %d\n", modules_loaded);
107 }
108 return modules_loaded;
109}
110
111std::vector<string> KernelModuleLoader::Skip_Loaded_Kernel_Modules() {
112 std::vector<string> kernel_modules = kernel_modules_requested;
113 std::vector<string> loaded_modules;
114 std::string kernel_module_file = "/proc/modules";
115 if (TWFunc::read_file(kernel_module_file, loaded_modules) < 0)
116 LOGINFO("failed to get loaded kernel modules\n");
Magendanz84164b92021-12-12 14:53:41 -0800117 LOGINFO("number of modules loaded by init: %zu\n", loaded_modules.size());
bigbiff850fa282021-10-09 12:37:29 -0400118 if (loaded_modules.size() == 0)
119 return kernel_modules;
120 for (auto&& module_line:loaded_modules) {
121 auto module = TWFunc::Split_String(module_line, " ")[0];
122 std::string full_module_name = module + ".ko";
123 auto found = std::find(kernel_modules.begin(), kernel_modules.end(), full_module_name);
124 if (found != kernel_modules.end()) {
125 LOGINFO("found module to dedupe: %s\n", (*found).c_str());
126 kernel_modules.erase(found);
127 }
128 }
129 return kernel_modules;
bigbiff22851b92021-09-01 16:46:57 -0400130}
131
132bool KernelModuleLoader::Write_Module_List(std::string module_dir) {
133 DIR* d;
134 struct dirent* de;
135 std::vector<std::string> kernel_modules;
bigbiff22851b92021-09-01 16:46:57 -0400136 d = opendir(module_dir.c_str());
bigbiff850fa282021-10-09 12:37:29 -0400137 auto deduped_modules = Skip_Loaded_Kernel_Modules();
138 if (deduped_modules.size() == 0) {
139 LOGINFO("Requested modules are loaded\n");
140 return false;
141 }
bigbiff22851b92021-09-01 16:46:57 -0400142 if (d != nullptr) {
143 while ((de = readdir(d)) != nullptr) {
144 std::string kernel_module = de->d_name;
145 if (de->d_type == DT_REG) {
146 if (android::base::EndsWith(kernel_module, ".ko")) {
147 for (auto&& requested:kernel_modules_requested) {
148 if (kernel_module == requested) {
149 kernel_modules.push_back(kernel_module);
bigbiff850fa282021-10-09 12:37:29 -0400150 continue;
151 }
bigbiff22851b92021-09-01 16:46:57 -0400152 }
153 continue;
154 }
155 }
156 }
bigbiff850fa282021-10-09 12:37:29 -0400157 std::string module_file = module_dir + "/modules.load.twrp";
bigbiff22851b92021-09-01 16:46:57 -0400158 TWFunc::write_to_file(module_file, kernel_modules);
bigbiff850fa282021-10-09 12:37:29 -0400159 closedir(d);
bigbiff22851b92021-09-01 16:46:57 -0400160 }
161 return true;
162}
163
164bool KernelModuleLoader::Copy_Modules_To_Tmpfs(std::string module_dir) {
bigbiff850fa282021-10-09 12:37:29 -0400165 std::string ramdisk_dir = "/tmp" + module_dir;
166 DIR* d;
bigbiff22851b92021-09-01 16:46:57 -0400167 struct dirent* de;
bigbiff850fa282021-10-09 12:37:29 -0400168 d = opendir(module_dir.c_str());
169 if (d != nullptr) {
170 while ((de = readdir(d)) != nullptr) {
171 std::string kernel_module = de->d_name;
172 if (de->d_type == DT_REG) {
173 std::string src = module_dir + "/" + de->d_name;
174 std::string dest = ramdisk_dir + "/" + de->d_name;
175 if (TWFunc::copy_file(src, dest, 0700, false) != 0) {
176 return false;
177 }
178 }
179 }
180 closedir(d);
181 } else {
182 LOGINFO("Unable to open module directory: %s. Skipping\n", module_dir.c_str());
183 return false;
184 }
185 return true;
186}