+bool SubFolder::Open(const std::string &path, const Functor<void (std::streambuf &)> &code) {
+ return parent_->Open(path_ + path, code);
+}
+
+void SubFolder::Find(const std::string &path, const Functor<void (const std::string &, const Functor<void (const Functor<void (std::streambuf &, std::streambuf &)> &)> &)> &code) {
+ return parent_->Find(path_ + path, code);
+}
+
+static size_t copy(std::streambuf &source, std::streambuf &target) {
+ size_t total(0);
+ for (;;) {
+ char data[4096];
+ size_t writ(source.sgetn(data, sizeof(data)));
+ if (writ == 0)
+ break;
+ _assert(target.sputn(data, writ) == writ);
+ total += writ;
+ }
+ return total;
+}
+
+static PList::Structure *plist(const std::string &data) {
+ if (!Starts(data, "bplist00"))
+ return PList::Structure::FromXml(data);
+ std::vector<char> bytes(data.data(), data.data() + data.size());
+ return PList::Structure::FromBin(bytes);
+}
+
+static void plist_d(std::streambuf &buffer, const Functor<void (PList::Dictionary *)> &code) {
+ std::stringbuf data;
+ copy(buffer, data);
+ PList::Structure *structure(plist(data.str()));
+ _scope({ delete structure; });
+ auto dictionary(dynamic_cast<PList::Dictionary *>(structure));
+ _assert(dictionary != NULL);
+ code(dictionary);
+}
+
+static std::string plist_s(PList::Node *node) {
+ auto value(dynamic_cast<PList::String *>(node));
+ _assert(value != NULL);
+ return value->GetValue();
+}
+
+enum Mode {
+ NoMode,
+ OptionalMode,
+ OmitMode,
+ NestedMode,
+ TopMode,
+};
+
+class Expression {
+ private:
+ regex_t regex_;
+
+ public:
+ Expression(const std::string &code) {
+ _assert_(regcomp(®ex_, code.c_str(), REG_EXTENDED | REG_NOSUB) == 0, "regcomp()");
+ }
+
+ ~Expression() {
+ regfree(®ex_);
+ }
+
+ bool operator ()(const std::string &data) const {
+ auto value(regexec(®ex_, data.c_str(), 0, NULL, 0));
+ if (value == REG_NOMATCH)
+ return false;
+ _assert_(value == 0, "regexec()");
+ return true;
+ }
+};
+
+struct Rule {
+ unsigned weight_;
+ Mode mode_;
+ std::string code_;
+
+ mutable std::auto_ptr<Expression> regex_;
+
+ Rule(unsigned weight, Mode mode, const std::string &code) :
+ weight_(weight),
+ mode_(mode),
+ code_(code)
+ {
+ }
+
+ Rule(const Rule &rhs) :
+ weight_(rhs.weight_),
+ mode_(rhs.mode_),
+ code_(rhs.code_)
+ {
+ }
+
+ void Compile() const {
+ regex_.reset(new Expression(code_));
+ }
+
+ bool operator ()(const std::string &data) const {
+ _assert(regex_.get() != NULL);
+ return (*regex_)(data);
+ }
+
+ bool operator <(const Rule &rhs) const {
+ if (weight_ > rhs.weight_)
+ return true;
+ if (weight_ < rhs.weight_)
+ return false;
+ return mode_ > rhs.mode_;
+ }
+};
+
+struct RuleCode {
+ bool operator ()(const Rule *lhs, const Rule *rhs) const {
+ return lhs->code_ < rhs->code_;
+ }
+};
+
+std::string Bundle(const std::string &root, Folder &folder, const std::string &key, std::map<std::string, std::vector<char>> &remote) {
+ std::string executable;
+ std::string identifier;
+
+ static const std::string info("Info.plist");
+
+ _assert_(folder.Open(info, fun([&](std::streambuf &buffer) {
+ plist_d(buffer, fun([&](PList::Dictionary *dictionary) {
+ executable = plist_s(((*dictionary)["CFBundleExecutable"]));
+ identifier = plist_s(((*dictionary)["CFBundleIdentifier"]));
+ }));
+ })), "open(): Info.plist");
+
+ std::map<std::string, std::multiset<Rule>> versions;
+
+ auto &rules1(versions[""]);
+ auto &rules2(versions["2"]);
+
+ static const std::string signature("_CodeSignature/CodeResources");
+
+ folder.Open(signature, fun([&](std::streambuf &buffer) {
+ plist_d(buffer, fun([&](PList::Dictionary *dictionary) {
+ // XXX: maybe attempt to preserve existing rules
+ }));
+ }));
+
+ if (true) {
+ rules1.insert(Rule{1, NoMode, "^"});
+ rules1.insert(Rule{10000, OmitMode, "^(Frameworks/[^/]+\\.framework/|PlugIns/[^/]+\\.appex/|PlugIns/[^/]+\\.appex/Frameworks/[^/]+\\.framework/|())SC_Info/[^/]+\\.(sinf|supf|supp)$"});
+ rules1.insert(Rule{1000, OptionalMode, "^.*\\.lproj/"});
+ rules1.insert(Rule{1100, OmitMode, "^.*\\.lproj/locversion.plist$"});
+ rules1.insert(Rule{10000, OmitMode, "^Watch/[^/]+\\.app/(Frameworks/[^/]+\\.framework/|PlugIns/[^/]+\\.appex/|PlugIns/[^/]+\\.appex/Frameworks/[^/]+\\.framework/)SC_Info/[^/]+\\.(sinf|supf|supp)$"});
+ rules1.insert(Rule{1, NoMode, "^version.plist$"});
+ }
+
+ if (true) {
+ rules2.insert(Rule{11, NoMode, ".*\\.dSYM($|/)"});
+ rules2.insert(Rule{20, NoMode, "^"});
+ rules2.insert(Rule{2000, OmitMode, "^(.*/)?\\.DS_Store$"});
+ rules2.insert(Rule{10000, OmitMode, "^(Frameworks/[^/]+\\.framework/|PlugIns/[^/]+\\.appex/|PlugIns/[^/]+\\.appex/Frameworks/[^/]+\\.framework/|())SC_Info/[^/]+\\.(sinf|supf|supp)$"});
+ rules2.insert(Rule{10, NestedMode, "^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/"});
+ rules2.insert(Rule{1, NoMode, "^.*"});
+ rules2.insert(Rule{1000, OptionalMode, "^.*\\.lproj/"});
+ rules2.insert(Rule{1100, OmitMode, "^.*\\.lproj/locversion.plist$"});
+ rules2.insert(Rule{20, OmitMode, "^Info\\.plist$"});
+ rules2.insert(Rule{20, OmitMode, "^PkgInfo$"});
+ rules2.insert(Rule{10000, OmitMode, "^Watch/[^/]+\\.app/(Frameworks/[^/]+\\.framework/|PlugIns/[^/]+\\.appex/|PlugIns/[^/]+\\.appex/Frameworks/[^/]+\\.framework/)SC_Info/[^/]+\\.(sinf|supf|supp)$"});
+ rules2.insert(Rule{10, NestedMode, "^[^/]+$"});
+ rules2.insert(Rule{20, NoMode, "^embedded\\.provisionprofile$"});
+ rules2.insert(Rule{20, NoMode, "^version\\.plist$"});
+ }
+
+ std::map<std::string, std::vector<char>> local;
+
+ static Expression nested("^PlugIns/[^/]*\\.appex/Info\\.plist$");
+
+ folder.Find("", fun([&](const std::string &name, const Functor<void (const Functor<void (std::streambuf &, std::streambuf &)> &)> &code) {
+ if (!nested(name))
+ return;
+ auto bundle(root + Split(name).dir);
+ SubFolder subfolder(&folder, bundle);
+ Bundle(bundle, subfolder, key, local);
+ }));
+
+ folder.Find("", fun([&](const std::string &name, const Functor<void (const Functor<void (std::streambuf &, std::streambuf &)> &)> &code) {
+ if (name == executable || name == signature)
+ return;
+
+ auto &hash(local[name]);
+ if (!hash.empty())
+ return;
+
+ code(fun([&](std::streambuf &data, std::streambuf &save) {
+ HashProxy proxy(hash, save);
+ copy(data, proxy);
+ }));
+
+ _assert(hash.size() == SHA_DIGEST_LENGTH);
+ }));
+
+ PList::Dictionary plist;
+
+ for (const auto &version : versions) {
+ PList::Dictionary files;
+
+ for (const auto &rule : version.second)
+ rule.Compile();
+
+ for (const auto &hash : local)
+ for (const auto &rule : version.second)
+ if (rule(hash.first)) {
+ if (rule.mode_ == NoMode)
+ files.Set(hash.first, PList::Data(hash.second));
+ else if (rule.mode_ == OptionalMode) {
+ PList::Dictionary entry;
+ entry.Set("hash", PList::Data(hash.second));
+ entry.Set("optional", PList::Boolean(true));
+ files.Set(hash.first, entry);
+ }
+
+ break;
+ }
+
+ plist.Set("files" + version.first, files);
+ }
+
+ for (const auto &version : versions) {
+ PList::Dictionary rules;
+
+ std::multiset<const Rule *, RuleCode> ordered;
+ for (const auto &rule : version.second)
+ ordered.insert(&rule);
+
+ for (const auto &rule : ordered)
+ if (rule->weight_ == 1 && rule->mode_ == NoMode)
+ rules.Set(rule->code_, PList::Boolean(true));
+ else {
+ PList::Dictionary entry;
+
+ switch (rule->mode_) {
+ case NoMode:
+ break;
+ case OmitMode:
+ entry.Set("omit", PList::Boolean(true));
+ break;
+ case OptionalMode:
+ entry.Set("optional", PList::Boolean(true));
+ break;
+ case NestedMode:
+ entry.Set("nested", PList::Boolean(true));
+ break;
+ case TopMode:
+ entry.Set("top", PList::Boolean(true));
+ break;
+ }
+
+ if (rule->weight_ >= 10000)
+ entry.Set("weight", PList::Integer(rule->weight_));
+ else if (rule->weight_ != 1)
+ entry.Set("weight", PList::Real(rule->weight_));
+
+ rules.Set(rule->code_, entry);
+ }
+
+ plist.Set("rules" + version.first, rules);
+ }
+
+ folder.Save(signature, fun([&](std::streambuf &save) {
+ HashProxy proxy(local[signature], save);
+ auto xml(plist.ToXml());
+ put(proxy, xml.data(), xml.size());
+ }));
+
+ folder.Open(executable, fun([&](std::streambuf &buffer) {
+ // XXX: this is a miserable fail
+ std::stringbuf temp;
+ copy(buffer, temp);
+ auto data(temp.str());
+
+ folder.Save(executable, fun([&](std::streambuf &save) {
+ Slots slots;
+ slots[1] = local.at(info);
+ slots[3] = local.at(signature);
+
+ HashProxy proxy(local[executable], save);
+ Sign(data.data(), data.size(), proxy, identifier, "", key, slots);
+ }));
+ }));
+
+ for (const auto &hash : local)
+ remote[root + hash.first] = hash.second;
+
+ return executable;
+}
+
+}
+
+int main(int argc, char *argv[]) {
+ OpenSSL_add_all_algorithms();
+
+ union {
+ uint16_t word;
+ uint8_t byte[2];
+ } endian = {1};
+
+ little_ = endian.byte[0];
+
+ bool flag_r(false);
+ bool flag_e(false);
+
+ bool flag_T(false);
+
+ bool flag_S(false);
+ bool flag_s(false);
+
+ bool flag_D(false);
+
+ bool flag_A(false);
+ bool flag_a(false);
+
+ uint32_t flag_CPUType(_not(uint32_t));
+ uint32_t flag_CPUSubtype(_not(uint32_t));
+
+ const char *flag_I(NULL);
+
+ bool timeh(false);
+ uint32_t timev(0);
+
+ Map entitlements;
+ Map key;
+ ldid::Slots slots;
+
+ std::vector<std::string> files;
+
+ if (argc == 1) {
+ fprintf(stderr, "usage: %s -S[entitlements.xml] <binary>\n", argv[0]);
+ fprintf(stderr, " %s -e MobileSafari\n", argv[0]);
+ fprintf(stderr, " %s -S cat\n", argv[0]);
+ fprintf(stderr, " %s -Stfp.xml gdb\n", argv[0]);
+ exit(0);
+ }
+
+ for (int argi(1); argi != argc; ++argi)
+ if (argv[argi][0] != '-')
+ files.push_back(argv[argi]);
+ else switch (argv[argi][1]) {
+ case 'r':
+ _assert(!flag_s);
+ _assert(!flag_S);
+ flag_r = true;
+ break;
+
+ case 'e': flag_e = true; break;
+
+ case 'E': {
+ const char *slot = argv[argi] + 2;
+ const char *colon = strchr(slot, ':');
+ _assert(colon != NULL);
+ Map file(colon + 1, O_RDONLY, PROT_READ, MAP_PRIVATE);
+ char *arge;
+ unsigned number(strtoul(slot, &arge, 0));
+ _assert(arge == colon);
+ std::vector<char> &hash(slots[number]);
+ hash.resize(SHA_DIGEST_LENGTH);
+ sha1(reinterpret_cast<uint8_t *>(hash.data()), file.data(), file.size());
+ } break;
+
+ case 'D': flag_D = true; break;
+
+ case 'a': flag_a = true; break;
+
+ case 'A':
+ _assert(!flag_A);
+ flag_A = true;
+ if (argv[argi][2] != '\0') {
+ const char *cpu = argv[argi] + 2;
+ const char *colon = strchr(cpu, ':');
+ _assert(colon != NULL);
+ char *arge;
+ flag_CPUType = strtoul(cpu, &arge, 0);
+ _assert(arge == colon);
+ flag_CPUSubtype = strtoul(colon + 1, &arge, 0);
+ _assert(arge == argv[argi] + strlen(argv[argi]));
+ }
+ break;
+
+ case 's':
+ _assert(!flag_r);
+ _assert(!flag_S);
+ flag_s = true;
+ break;
+
+ case 'S':
+ _assert(!flag_r);
+ _assert(!flag_s);
+ flag_S = true;
+ if (argv[argi][2] != '\0') {
+ const char *xml = argv[argi] + 2;
+ entitlements.open(xml, O_RDONLY, PROT_READ, MAP_PRIVATE);
+ }
+ break;
+
+ case 'K':
+ key.open(argv[argi] + 2, O_RDONLY, PROT_READ, MAP_PRIVATE);
+ break;
+
+ case 'T': {
+ flag_T = true;
+ if (argv[argi][2] == '-')
+ timeh = true;
+ else {
+ char *arge;
+ timev = strtoul(argv[argi] + 2, &arge, 0);
+ _assert(arge == argv[argi] + strlen(argv[argi]));
+ }
+ } break;
+
+ case 'I': {
+ flag_I = argv[argi] + 2;
+ } break;
+
+ default:
+ goto usage;
+ break;
+ }
+
+ _assert(flag_S || key.empty());
+ _assert(flag_S || flag_I == NULL);
+
+ if (files.empty()) usage: {
+ exit(0);
+ }
+
+ size_t filei(0), filee(0);
+ _foreach (file, files) try {
+ std::string path(file);
+
+ struct stat info;
+ _syscall(stat(path.c_str(), &info));
+
+ if (S_ISDIR(info.st_mode)) {
+ _assert(!flag_r);
+ ldid::DiskFolder folder(path);
+ std::map<std::string, std::vector<char>> hashes;
+ path += "/" + Bundle("", folder, key, hashes);
+ } else if (flag_S || flag_r) {
+ Map input(path, O_RDONLY, PROT_READ, MAP_PRIVATE);
+
+ std::filebuf output;
+ Split split(path);
+ auto temp(Temporary(output, split));
+
+ if (flag_r)
+ ldid::Unsign(input.data(), input.size(), output);
+ else {
+ std::string identifier(flag_I ?: split.base.c_str());
+ ldid::Sign(input.data(), input.size(), output, identifier, entitlements, key, slots);
+ }
+
+ Commit(path, temp);
+ }
+
+ Map mapping(path, flag_T || flag_s);
+ FatHeader fat_header(mapping.data(), mapping.size());
+
+ _foreach (mach_header, fat_header.GetMachHeaders()) {
+ struct linkedit_data_command *signature(NULL);
+ struct encryption_info_command *encryption(NULL);
+
+ if (flag_A) {
+ if (mach_header.GetCPUType() != flag_CPUType)
+ continue;
+ if (mach_header.GetCPUSubtype() != flag_CPUSubtype)
+ continue;
+ }
+
+ if (flag_a)
+ printf("cpu=0x%x:0x%x\n", mach_header.GetCPUType(), mach_header.GetCPUSubtype());
+
+ _foreach (load_command, mach_header.GetLoadCommands()) {
+ uint32_t cmd(mach_header.Swap(load_command->cmd));
+
+ if (false);