blob: db7fcc9aa184c20fb64dd106004cc732db9800ff [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]);
bigbiff22851b92021-09-01 16:46:57 -040037
bigbiff850fa282021-10-09 12:37:29 -040038 for (auto&& module_dir:module_dirs) {
39 modules_loaded += Try_And_Load_Modules(module_dir, false);
40 if (modules_loaded >= expected_module_count) goto exit;
41 }
bigbiff22851b92021-09-01 16:46:57 -040042
bigbiff850fa282021-10-09 12:37:29 -040043 for (auto&& module_dir:vendor_module_dirs) {
44 modules_loaded += Try_And_Load_Modules(module_dir, false);
45 if (modules_loaded >= expected_module_count) goto exit;
46 }
bigbiff22851b92021-09-01 16:46:57 -040047
bigbiff850fa282021-10-09 12:37:29 -040048 if (ven) {
49 LOGINFO("Checking mounted /vendor\n");
50 ven->Mount(true);
51 }
bigbiff22851b92021-09-01 16:46:57 -040052
bigbiff850fa282021-10-09 12:37:29 -040053 for (auto&& module_dir:vendor_module_dirs) {
54 modules_loaded += Try_And_Load_Modules(module_dir, true);
55 if (modules_loaded >= expected_module_count) goto exit;
56 }
bigbiff22851b92021-09-01 16:46:57 -040057
bigbiffe3aa02e2021-10-01 13:07:38 -040058exit:
bigbiff850fa282021-10-09 12:37:29 -040059 if (ven)
60 ven->UnMount(false);
bigbiff22851b92021-09-01 16:46:57 -040061
Adithya R3a59df52021-12-19 00:49:54 +053062 android::base::SetProperty("twrp.modules.loaded", "true");
63
64 TWFunc::Wait_For_Battery(3s);
65
bigbiff22851b92021-09-01 16:46:57 -040066 return true;
67}
68
bigbiff850fa282021-10-09 12:37:29 -040069int KernelModuleLoader::Try_And_Load_Modules(std::string module_dir, bool vendor_is_mounted) {
70 LOGINFO("Checking directory: %s\n", module_dir.c_str());
71 int modules_loaded = 0;
72 std::string dest_module_dir;
73 dest_module_dir = "/tmp" + module_dir;
74 TWFunc::Recursive_Mkdir(dest_module_dir);
75 Copy_Modules_To_Tmpfs(module_dir);
76 if (!Write_Module_List(dest_module_dir))
77 return kernel_modules_requested.size();
78 if (!vendor_is_mounted && module_dir == "/vendor/lib/modules") {
79 module_dir = "/lib/modules";
80 }
81 LOGINFO("mounting %s on %s\n", dest_module_dir.c_str(), module_dir.c_str());
82 if (mount(dest_module_dir.c_str(), module_dir.c_str(), "", MS_BIND, NULL) == 0) {
83 Modprobe m({module_dir}, "modules.load.twrp");
84 m.EnableVerbose(true);
85 m.LoadListedModules(false);
86 modules_loaded = m.GetModuleCount();
87 umount2(module_dir.c_str(), MNT_DETACH);
88 LOGINFO("Modules Loaded: %d\n", modules_loaded);
89 }
90 return modules_loaded;
91}
92
93std::vector<string> KernelModuleLoader::Skip_Loaded_Kernel_Modules() {
94 std::vector<string> kernel_modules = kernel_modules_requested;
95 std::vector<string> loaded_modules;
96 std::string kernel_module_file = "/proc/modules";
97 if (TWFunc::read_file(kernel_module_file, loaded_modules) < 0)
98 LOGINFO("failed to get loaded kernel modules\n");
Magendanz37920d92021-12-12 14:53:41 -080099 LOGINFO("number of modules loaded by init: %zu\n", loaded_modules.size());
bigbiff850fa282021-10-09 12:37:29 -0400100 if (loaded_modules.size() == 0)
101 return kernel_modules;
102 for (auto&& module_line:loaded_modules) {
103 auto module = TWFunc::Split_String(module_line, " ")[0];
104 std::string full_module_name = module + ".ko";
105 auto found = std::find(kernel_modules.begin(), kernel_modules.end(), full_module_name);
106 if (found != kernel_modules.end()) {
107 LOGINFO("found module to dedupe: %s\n", (*found).c_str());
108 kernel_modules.erase(found);
109 }
110 }
111 return kernel_modules;
bigbiff22851b92021-09-01 16:46:57 -0400112}
113
114bool KernelModuleLoader::Write_Module_List(std::string module_dir) {
115 DIR* d;
116 struct dirent* de;
117 std::vector<std::string> kernel_modules;
bigbiff22851b92021-09-01 16:46:57 -0400118 d = opendir(module_dir.c_str());
bigbiff850fa282021-10-09 12:37:29 -0400119 auto deduped_modules = Skip_Loaded_Kernel_Modules();
120 if (deduped_modules.size() == 0) {
121 LOGINFO("Requested modules are loaded\n");
122 return false;
123 }
bigbiff22851b92021-09-01 16:46:57 -0400124 if (d != nullptr) {
125 while ((de = readdir(d)) != nullptr) {
126 std::string kernel_module = de->d_name;
127 if (de->d_type == DT_REG) {
128 if (android::base::EndsWith(kernel_module, ".ko")) {
129 for (auto&& requested:kernel_modules_requested) {
130 if (kernel_module == requested) {
131 kernel_modules.push_back(kernel_module);
bigbiff850fa282021-10-09 12:37:29 -0400132 continue;
133 }
bigbiff22851b92021-09-01 16:46:57 -0400134 }
135 continue;
136 }
137 }
138 }
bigbiff850fa282021-10-09 12:37:29 -0400139 std::string module_file = module_dir + "/modules.load.twrp";
bigbiff22851b92021-09-01 16:46:57 -0400140 TWFunc::write_to_file(module_file, kernel_modules);
bigbiff850fa282021-10-09 12:37:29 -0400141 closedir(d);
bigbiff22851b92021-09-01 16:46:57 -0400142 }
143 return true;
144}
145
146bool KernelModuleLoader::Copy_Modules_To_Tmpfs(std::string module_dir) {
bigbiff850fa282021-10-09 12:37:29 -0400147 std::string ramdisk_dir = "/tmp" + module_dir;
148 DIR* d;
bigbiff22851b92021-09-01 16:46:57 -0400149 struct dirent* de;
bigbiff850fa282021-10-09 12:37:29 -0400150 d = opendir(module_dir.c_str());
151 if (d != nullptr) {
152 while ((de = readdir(d)) != nullptr) {
153 std::string kernel_module = de->d_name;
154 if (de->d_type == DT_REG) {
155 std::string src = module_dir + "/" + de->d_name;
156 std::string dest = ramdisk_dir + "/" + de->d_name;
157 if (TWFunc::copy_file(src, dest, 0700, false) != 0) {
158 return false;
159 }
160 }
161 }
162 closedir(d);
163 } else {
164 LOGINFO("Unable to open module directory: %s. Skipping\n", module_dir.c_str());
165 return false;
166 }
167 return true;
168}