-
Notifications
You must be signed in to change notification settings - Fork 388
/
zsign.cpp
265 lines (241 loc) · 7.73 KB
/
zsign.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#include "bundle.h"
#include "common/common.h"
#include "macho.h"
#include "openssl.h"
#include <dirent.h>
#include <getopt.h>
#include <libgen.h>
#include <string>
#include <vector>
const struct option options[] = {
{"debug", no_argument, NULL, 'd'},
{"force", no_argument, NULL, 'f'},
{"verbose", no_argument, NULL, 'v'},
{"cert", required_argument, NULL, 'c'},
{"pkey", required_argument, NULL, 'k'},
{"prov", required_argument, NULL, 'm'},
{"password", required_argument, NULL, 'p'},
{"bundle_id", required_argument, NULL, 'b'},
{"bundle_name", required_argument, NULL, 'n'},
{"bundle_version", required_argument, NULL, 'r'},
{"entitlements", required_argument, NULL, 'e'},
{"output", required_argument, NULL, 'o'},
{"zip_level", required_argument, NULL, 'z'},
{"dylib", required_argument, NULL, 'l'},
{"weak", no_argument, NULL, 'w'},
{"install", no_argument, NULL, 'i'},
{"quiet", no_argument, NULL, 'q'},
{"help", no_argument, NULL, 'h'},
{}};
int usage() {
ZLog::Print("Usage: zsign [-options] [-k privkey.pem] [-m dev.prov] [-o "
"output.ipa] file|folder\n");
ZLog::Print("options:\n");
ZLog::Print(
"-k, --pkey\t\tPath to private key or p12 file. (PEM or DER format)\n");
ZLog::Print("-m, --prov\t\tPath to mobile provisioning profile.\n");
ZLog::Print("-c, --cert\t\tPath to certificate file. (PEM or DER format)\n");
ZLog::Print(
"-d, --debug\t\tGenerate debug output files. (.zsign_debug folder)\n");
ZLog::Print("-f, --force\t\tForce sign without cache when signing folder.\n");
ZLog::Print("-o, --output\t\tPath to output ipa file.\n");
ZLog::Print("-p, --password\t\tPassword for private key or p12 file.\n");
ZLog::Print("-b, --bundle_id\t\tNew bundle id to change.\n");
ZLog::Print("-n, --bundle_name\tNew bundle name to change.\n");
ZLog::Print("-r, --bundle_version\tNew bundle version to change.\n");
ZLog::Print("-e, --entitlements\tNew entitlements to change.\n");
ZLog::Print(
"-z, --zip_level\t\tCompressed level when output the ipa file. (0-9)\n");
ZLog::Print("-l, --dylib\t\tPath to inject dylib file.\n");
ZLog::Print(
"\t\t\tUse -l multiple time to inject multiple dylib files at once.\n");
ZLog::Print("-w, --weak\t\tInject dylib as LC_LOAD_WEAK_DYLIB.\n");
ZLog::Print("-i, --install\t\tInstall ipa file using ideviceinstaller "
"command for test.\n");
ZLog::Print("-q, --quiet\t\tQuiet operation.\n");
ZLog::Print("-v, --version\t\tShows version.\n");
ZLog::Print("-h, --help\t\tShows help (this message).\n");
return -1;
}
int main(int argc, char *argv[]) {
ZTimer gtimer;
bool bForce = false;
bool bInstall = false;
bool bWeakInject = false;
uint32_t uZipLevel = 0;
string strCertFile;
string strPKeyFile;
string strProvFile;
string strPassword;
string strBundleId;
string strBundleVersion;
string strOutputFile;
string strDisplayName;
string strEntitlementsFile;
vector<string> arrDyLibFiles;
int opt = 0;
int argslot = -1;
while (-1 != (opt = getopt_long(argc, argv, "dfvhc:k:m:o:ip:e:b:n:z:ql:w",
options, &argslot))) {
switch (opt) {
case 'd':
ZLog::SetLogLever(ZLog::E_DEBUG);
break;
case 'f':
bForce = true;
break;
case 'c':
strCertFile = optarg;
break;
case 'k':
strPKeyFile = optarg;
break;
case 'm':
strProvFile = optarg;
break;
case 'p':
strPassword = optarg;
break;
case 'b':
strBundleId = optarg;
break;
case 'r':
strBundleVersion = optarg;
break;
case 'n':
strDisplayName = optarg;
break;
case 'e':
strEntitlementsFile = optarg;
break;
case 'l':
arrDyLibFiles.push_back(optarg);
break;
case 'i':
bInstall = true;
break;
case 'o':
strOutputFile = GetCanonicalizePath(optarg);
break;
case 'z':
uZipLevel = atoi(optarg);
break;
case 'w':
bWeakInject = true;
break;
case 'q':
ZLog::SetLogLever(ZLog::E_NONE);
break;
case 'v': {
printf("version: 0.5\n");
return 0;
} break;
case 'h':
case '?':
return usage();
break;
}
ZLog::DebugV(">>> Option:\t-%c, %s\n", opt, optarg);
}
if (optind >= argc) {
return usage();
}
if (ZLog::IsDebug()) {
CreateFolder("./.zsign_debug");
for (int i = optind; i < argc; i++) {
ZLog::DebugV(">>> Argument:\t%s\n", argv[i]);
}
}
string strPath = GetCanonicalizePath(argv[optind]);
if (!IsFileExists(strPath.c_str())) {
ZLog::ErrorV(">>> Invalid Path! %s\n", strPath.c_str());
return -1;
}
bool bZipFile = false;
if (!IsFolder(strPath.c_str())) {
bZipFile = IsZipFile(strPath.c_str());
if (!bZipFile) { // macho file
ZMachO macho;
if (macho.Init(strPath.c_str())) {
if (!arrDyLibFiles.empty()) { // inject dylib
bool bCreate = false;
for (string dyLibFile : arrDyLibFiles)
macho.InjectDyLib(bWeakInject, dyLibFile.c_str(), bCreate);
} else {
macho.PrintInfo();
}
macho.Free();
}
return 0;
}
}
ZTimer timer;
ZSignAsset zSignAsset;
if (!zSignAsset.Init(strCertFile, strPKeyFile, strProvFile,
strEntitlementsFile, strPassword)) {
return -1;
}
bool bEnableCache = true;
string strFolder = strPath;
if (bZipFile) { // ipa file
bForce = true;
bEnableCache = false;
StringFormat(strFolder, "/tmp/zsign_folder_%llu", timer.Reset());
ZLog::PrintV(">>> Unzip:\t%s (%s) -> %s ... \n", strPath.c_str(),
GetFileSizeString(strPath.c_str()).c_str(), strFolder.c_str());
RemoveFolder(strFolder.c_str());
if (!SystemExec("unzip -qq -d '%s' '%s'", strFolder.c_str(),
strPath.c_str())) {
RemoveFolder(strFolder.c_str());
ZLog::ErrorV(">>> Unzip Failed!\n");
return -1;
}
timer.PrintResult(true, ">>> Unzip OK!");
}
timer.Reset();
ZAppBundle bundle;
bool bRet = bundle.SignFolder(&zSignAsset, strFolder, strBundleId,
strBundleVersion, strDisplayName, arrDyLibFiles,
bForce, bWeakInject, bEnableCache);
timer.PrintResult(bRet, ">>> Signed %s!", bRet ? "OK" : "Failed");
if (bInstall && strOutputFile.empty()) {
StringFormat(strOutputFile, "/tmp/zsign_temp_%llu.ipa", GetMicroSecond());
}
if (!strOutputFile.empty()) {
timer.Reset();
size_t pos = bundle.m_strAppFolder.rfind("/Payload");
if (string::npos == pos) {
ZLog::Error(">>> Can't Find Payload Directory!\n");
return -1;
}
ZLog::PrintV(">>> Archiving: \t%s ... \n", strOutputFile.c_str());
string strBaseFolder = bundle.m_strAppFolder.substr(0, pos);
char szOldFolder[PATH_MAX] = {0};
if (NULL != getcwd(szOldFolder, PATH_MAX)) {
if (0 == chdir(strBaseFolder.c_str())) {
uZipLevel = uZipLevel > 9 ? 9 : uZipLevel;
RemoveFile(strOutputFile.c_str());
SystemExec("zip -q -%u -r '%s' Payload", uZipLevel,
strOutputFile.c_str());
chdir(szOldFolder);
if (!IsFileExists(strOutputFile.c_str())) {
ZLog::Error(">>> Archive Failed!\n");
return -1;
}
}
}
timer.PrintResult(true, ">>> Archive OK! (%s)",
GetFileSizeString(strOutputFile.c_str()).c_str());
}
if (bRet && bInstall) {
SystemExec("ideviceinstaller -i '%s'", strOutputFile.c_str());
}
if (0 == strOutputFile.find("/tmp/zsign_tmp_")) {
RemoveFile(strOutputFile.c_str());
}
if (0 == strFolder.find("/tmp/zsign_folder_")) {
RemoveFolder(strFolder.c_str());
}
gtimer.Print(">>> Done.");
return bRet ? 0 : -1;
}