blob: ebcf406665e513b49b6ccb3244f82552b57cad10 [file] [log] [blame]
bigbiff22851b92021-09-01 16:46:57 -04001#include "kernel_module_loader.hpp"
Adithya R3a59df52021-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)
14 int modules_loaded = 0;
bigbiff22851b92021-09-01 16:46:57 -040015
bigbiff850fa282021-10-09 12:37:29 -040016 LOGINFO("Attempting to load modules\n");
17 std::string vendor_base_dir(VENDOR_MODULE_DIR);
18 std::string base_dir(VENDOR_BOOT_MODULE_DIR);
19 std::vector<std::string> module_dirs;
20 std::vector<std::string> vendor_module_dirs;
bigbiff22851b92021-09-01 16:46:57 -040021
bigbiff850fa282021-10-09 12:37:29 -040022 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
23 vendor_module_dirs.push_back(VENDOR_MODULE_DIR);
24 vendor_module_dirs.push_back(vendor_base_dir + "/1.1");
bigbiff22851b92021-09-01 16:46:57 -040025
bigbiff850fa282021-10-09 12:37:29 -040026 module_dirs.push_back(base_dir);
bigbiff22851b92021-09-01 16:46:57 -040027
bigbiff850fa282021-10-09 12:37:29 -040028 struct utsname uts;
29 if (uname(&uts)) {
30 LOGERR("Unable to query kernel for version info\n");
31 }
bigbiff22851b92021-09-01 16:46:57 -040032
bigbiff850fa282021-10-09 12:37:29 -040033 std::string rls(uts.release);
34 std::vector<std::string> release = TWFunc::split_string(rls, '.', true);
35 int expected_module_count = kernel_modules_requested.size();
36 module_dirs.push_back(base_dir + "/" + release[0] + "." + release[1]);
sekaiacg2679fb82021-12-31 19:30:44 +080037 std::string gki = "/" + release[0] + "." + release[1] + "-gki";
38 module_dirs.push_back(base_dir + gki);
39 vendor_module_dirs.push_back(vendor_base_dir + gki);
bigbiff22851b92021-09-01 16:46:57 -040040
bigbiff850fa282021-10-09 12:37:29 -040041 for (auto&& module_dir:module_dirs) {
42 modules_loaded += Try_And_Load_Modules(module_dir, false);
43 if (modules_loaded >= expected_module_count) goto exit;
44 }
bigbiff22851b92021-09-01 16:46:57 -040045
bigbiff850fa282021-10-09 12:37:29 -040046 for (auto&& module_dir:vendor_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 if (ven) {
52 LOGINFO("Checking mounted /vendor\n");
53 ven->Mount(true);
54 }
bigbiff22851b92021-09-01 16:46:57 -040055
bigbiff850fa282021-10-09 12:37:29 -040056 for (auto&& module_dir:vendor_module_dirs) {
57 modules_loaded += Try_And_Load_Modules(module_dir, true);
58 if (modules_loaded >= expected_module_count) goto exit;
59 }
bigbiff22851b92021-09-01 16:46:57 -040060
bigbiffe3aa02e2021-10-01 13:07:38 -040061exit:
bigbiff850fa282021-10-09 12:37:29 -040062 if (ven)
63 ven->UnMount(false);
bigbiff22851b92021-09-01 16:46:57 -040064
Adithya R3a59df52021-12-19 00:49:54 +053065 android::base::SetProperty("twrp.modules.loaded", "true");
66
67 TWFunc::Wait_For_Battery(3s);
68
bigbiff22851b92021-09-01 16:46:57 -040069 return true;
70}
71
bigbiff850fa282021-10-09 12:37:29 -040072int KernelModuleLoader::Try_And_Load_Modules(std::string module_dir, bool vendor_is_mounted) {
73 LOGINFO("Checking directory: %s\n", module_dir.c_str());
74 int modules_loaded = 0;
75 std::string dest_module_dir;
76 dest_module_dir = "/tmp" + module_dir;
77 TWFunc::Recursive_Mkdir(dest_module_dir);
78 Copy_Modules_To_Tmpfs(module_dir);
79 if (!Write_Module_List(dest_module_dir))
80 return kernel_modules_requested.size();
81 if (!vendor_is_mounted && module_dir == "/vendor/lib/modules") {
82 module_dir = "/lib/modules";
83 }
84 LOGINFO("mounting %s on %s\n", dest_module_dir.c_str(), module_dir.c_str());
85 if (mount(dest_module_dir.c_str(), module_dir.c_str(), "", MS_BIND, NULL) == 0) {
86 Modprobe m({module_dir}, "modules.load.twrp");
87 m.EnableVerbose(true);
88 m.LoadListedModules(false);
89 modules_loaded = m.GetModuleCount();
90 umount2(module_dir.c_str(), MNT_DETACH);
91 LOGINFO("Modules Loaded: %d\n", modules_loaded);
92 }
93 return modules_loaded;
94}
95
96std::vector<string> KernelModuleLoader::Skip_Loaded_Kernel_Modules() {
97 std::vector<string> kernel_modules = kernel_modules_requested;
98 std::vector<string> loaded_modules;
99 std::string kernel_module_file = "/proc/modules";
100 if (TWFunc::read_file(kernel_module_file, loaded_modules) < 0)
101 LOGINFO("failed to get loaded kernel modules\n");
Magendanz37920d92021-12-12 14:53:41 -0800102 LOGINFO("number of modules loaded by init: %zu\n", loaded_modules.size());
bigbiff850fa282021-10-09 12:37:29 -0400103 if (loaded_modules.size() == 0)
104 return kernel_modules;
105 for (auto&& module_line:loaded_modules) {
106 auto module = TWFunc::Split_String(module_line, " ")[0];
107 std::string full_module_name = module + ".ko";
108 auto found = std::find(kernel_modules.begin(), kernel_modules.end(), full_module_name);
109 if (found != kernel_modules.end()) {
110 LOGINFO("found module to dedupe: %s\n", (*found).c_str());
111 kernel_modules.erase(found);
112 }
113 }
114 return kernel_modules;
bigbiff22851b92021-09-01 16:46:57 -0400115}
116
117bool KernelModuleLoader::Write_Module_List(std::string module_dir) {
118 DIR* d;
119 struct dirent* de;
120 std::vector<std::string> kernel_modules;
bigbiff22851b92021-09-01 16:46:57 -0400121 d = opendir(module_dir.c_str());
bigbiff850fa282021-10-09 12:37:29 -0400122 auto deduped_modules = Skip_Loaded_Kernel_Modules();
123 if (deduped_modules.size() == 0) {
124 LOGINFO("Requested modules are loaded\n");
125 return false;
126 }
bigbiff22851b92021-09-01 16:46:57 -0400127 if (d != nullptr) {
128 while ((de = readdir(d)) != nullptr) {
129 std::string kernel_module = de->d_name;
130 if (de->d_type == DT_REG) {
131 if (android::base::EndsWith(kernel_module, ".ko")) {
132 for (auto&& requested:kernel_modules_requested) {
133 if (kernel_module == requested) {
134 kernel_modules.push_back(kernel_module);
bigbiff850fa282021-10-09 12:37:29 -0400135 continue;
136 }
bigbiff22851b92021-09-01 16:46:57 -0400137 }
138 continue;
139 }
140 }
141 }
bigbiff850fa282021-10-09 12:37:29 -0400142 std::string module_file = module_dir + "/modules.load.twrp";
bigbiff22851b92021-09-01 16:46:57 -0400143 TWFunc::write_to_file(module_file, kernel_modules);
bigbiff850fa282021-10-09 12:37:29 -0400144 closedir(d);
bigbiff22851b92021-09-01 16:46:57 -0400145 }
146 return true;
147}
148
149bool KernelModuleLoader::Copy_Modules_To_Tmpfs(std::string module_dir) {
bigbiff850fa282021-10-09 12:37:29 -0400150 std::string ramdisk_dir = "/tmp" + module_dir;
151 DIR* d;
bigbiff22851b92021-09-01 16:46:57 -0400152 struct dirent* de;
bigbiff850fa282021-10-09 12:37:29 -0400153 d = opendir(module_dir.c_str());
154 if (d != nullptr) {
155 while ((de = readdir(d)) != nullptr) {
156 std::string kernel_module = de->d_name;
157 if (de->d_type == DT_REG) {
158 std::string src = module_dir + "/" + de->d_name;
159 std::string dest = ramdisk_dir + "/" + de->d_name;
160 if (TWFunc::copy_file(src, dest, 0700, false) != 0) {
161 return false;
162 }
163 }
164 }
165 closedir(d);
166 } else {
167 LOGINFO("Unable to open module directory: %s. Skipping\n", module_dir.c_str());
168 return false;
169 }
170 return true;
171}