#include #include #include #include #include #include #include #include #include #include #include #include #include #include #define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_ #include <_system_properties.h> #include "_resetprop.hpp" using namespace std; bool use_pb = false; static bool verbose = false; static bool check_legal_property_name(const char *name) { int namelen = strlen(name); if (namelen < 1) goto illegal; if (name[0] == '.') goto illegal; if (name[namelen - 1] == '.') goto illegal; /* Only allow alphanumeric, plus '.', '-', '@', ':', or '_' */ /* Don't allow ".." to appear in a property name */ for (size_t i = 0; i < namelen; i++) { if (name[i] == '.') { // i=0 is guaranteed to never have a dot. See above. if (name[i-1] == '.') goto illegal; continue; } if (name[i] == '_' || name[i] == '-' || name[i] == '@' || name[i] == ':') continue; if (name[i] >= 'a' && name[i] <= 'z') continue; if (name[i] >= 'A' && name[i] <= 'Z') continue; if (name[i] >= '0' && name[i] <= '9') continue; goto illegal; } return true; illegal: LOGE("Illegal property name: [%s]\n", name); return false; } [[noreturn]] static void usage(char* arg0) { fprintf(stderr, NAME_WITH_VER(resetprop) R"EOF(" - System Props Modification Tool Usage: %s [flags] [options...] Options: -h, --help show this message (no arguments) print all properties NAME get property NAME VALUE set property entry NAME with VALUE --file FILE load props from FILE --delete NAME delete property Flags: -v print verbose output to stderr -n set properties without going through init affects setprop and prop file loading -p also access props directly from persist storage affects getprop and delprop )EOF", arg0); exit(1); } static void read_props(const prop_info *pi, void *cb) { __system_property_read_callback( pi, [](auto cb, auto name, auto value, auto) { reinterpret_cast(cb)->exec(name, value); }, cb); } static int init_resetprop() { use_pb = use_pb ? true : access(PERSISTENT_PROPERTY_DIR "/persistent_properties", R_OK) == 0; if (__system_properties_init()) { LOGE("resetprop: Initialize error\n"); return -1; } return 0; } static void print_props(bool persist) { getprops([](auto name, auto value, auto) { printf("[%s]: [%s]\n", name, value); }, nullptr, persist); } /* ************************************************** * Implementations of functions in resetprop.h (APIs) * **************************************************/ #define ENSURE_INIT(ret) if (init_resetprop()) return ret bool prop_exist(const char *name) { ENSURE_INIT(false); return __system_property_find(name) != nullptr; } // Get prop by name, return string string getprop(const char *name, bool persist) { if (!check_legal_property_name(name)) return string(); ENSURE_INIT(string()); const prop_info *pi = __system_property_find(name); if (pi == nullptr) { if (persist && strncmp(name, "persist.", 8) == 0) { auto value = persist_getprop(name); if (value.empty()) goto not_found; return value; } not_found: LOGD("resetprop: prop [%s] does not exist\n", name); return string(); } else { char buf[PROP_VALUE_MAX]; auto reader = make_prop_cb(buf, [](auto, auto value, auto buf) { strcpy(buf, value); }); read_props(pi, &reader); LOGD("resetprop: getprop [%s]: [%s]\n", name, buf); return buf; } } void getprops(void (*callback)(const char *, const char *, void *), void *cookie, bool persist) { ENSURE_INIT(); prop_list list; prop_collector collector(list); __system_property_foreach(read_props, &collector); if (persist) persist_getprops(&collector); for (auto &[key, val] : list) callback(key.data(), val.data(), cookie); persist_cleanup(); } int setprop(const char *name, const char *value, bool trigger) { if (!check_legal_property_name(name)) return 1; ENSURE_INIT(-1); int ret; auto pi = (prop_info*) __system_property_find(name); if (pi != nullptr) { if (trigger) { if (strncmp(name, "ro.", 3) == 0) delprop(name); ret = __system_property_set(name, value); } else { ret = __system_property_update(pi, value, strlen(value)); } } else { LOGD("resetprop: New prop [%s]\n", name); if (trigger) { ret = __system_property_set(name, value); } else { ret = __system_property_add(name, strlen(name), value, strlen(value)); } } LOGD("resetprop: setprop [%s]: [%s] by %s\n", name, value, trigger ? "property_service" : "modifing prop data structure"); if (ret) LOGE("resetprop: setprop error\n"); return ret; } int delprop(const char *name, bool persist) { if (!check_legal_property_name(name)) return 1; ENSURE_INIT(-1); char path[PATH_MAX]; path[0] = '\0'; LOGD("resetprop: delprop [%s]\n", name); if (persist && strncmp(name, "persist.", 8) == 0) persist = persist_deleteprop(name); return __system_property_del(name) && !(persist && strncmp(name, "persist.", 8) == 0); } void load_prop_file(const char *filename, bool trigger) { ENSURE_INIT(); LOGD("resetprop: Parse prop file [%s]\n", filename); parse_prop_file(filename, [=](auto key, auto val) -> bool { setprop(key.data(), val.data(), trigger); return true; }); } int resetprop_main(int argc, char *argv[]) { log_cb.d = [](auto fmt, auto ap) -> int { return verbose ? vfprintf(stderr, fmt, ap) : 0; }; bool trigger = true, persist = false; char *argv0 = argv[0]; string prop; --argc; ++argv; // Parse flags and -- options while (argc && argv[0][0] == '-') { for (int idx = 1; true; ++idx) { switch (argv[0][idx]) { case '-': if (strcmp(argv[0], "--file") == 0 && argc == 2) { load_prop_file(argv[1], trigger); return 0; } else if (strcmp(argv[0], "--delete") == 0 && argc == 2) { return delprop(argv[1], persist); } else if (strcmp(argv[0], "--help") == 0) { usage(argv0); } case 'v': verbose = true; continue; case 'p': persist = true; continue; case 'n': trigger = false; continue; case '\0': break; case 'h': default: usage(argv0); } break; } --argc; ++argv; } switch (argc) { case 0: print_props(persist); return 0; case 1: prop = getprop(argv[0], persist); if (prop.empty()) return 1; printf("%s\n", prop.c_str()); return 0; case 2: return setprop(argv[0], argv[1], trigger); default: usage(argv0); } }