Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ class Applesign {
res = await tools.pseudoSign(entitlements, file);
} else {
const keychain = getKeychain();
res = await tools.codesign(identity, entitlements, keychain, file);
res = await tools.codesign(identity, entitlements, keychain, file, this.config.codeSign);
if (res.code !== 0 && codesignHasFailed(config, res.code, res.stderr)) {
return this.emit('end', res.stderr);
}
Expand Down
3 changes: 3 additions & 0 deletions lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const helpMessage = `Usage:
-k, --keychain [KEYCHAIN] Specify custom keychain file
-K, --add-access-group [NAME] Add $(TeamIdentifier).NAME to keychain-access-groups
-L, --identities List local codesign identities
--codesign-tool=rcodesign Use rcodesign instead of codesign (EXPERIMENTAL)
-m, --mobileprovision [FILE] Specify the mobileprovision file to use
-s, --single Sign a single file instead of an IPA
-S, --self-sign-provision Self-sign mobile provisioning (EXPERIMENTAL)
Expand Down Expand Up @@ -178,6 +179,7 @@ const fromOptions = function (opt) {
outfile: opt.outfile,
parallel: opt.parallel || false,
pseudoSign: opt.pseudoSign || false,
codeSign: opt.codeSign || '',
replaceipa: opt.replaceipa || false,
run: opt.run,
selfSignedProvision: opt.selfSignedProvision || false,
Expand Down Expand Up @@ -269,6 +271,7 @@ function compile (conf) {
outfile: (conf.output || conf.o) ? path.resolve(conf.output || conf.o) : '',
parallel: conf.parallel || conf.P,
pseudoSign: conf.Z || conf['pseudo-sign'],
codeSign: conf['codesign-tool'],
replaceipa: conf.replace || conf.r,
run: conf.R || conf.run,
selfSignedProvision: conf.S || conf['self-signed-provision'],
Expand Down
62 changes: 59 additions & 3 deletions lib/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,62 @@ async function ideviceprovision (action, optarg) {
}
}

async function codesign (identity, entitlement, keychain, file) {
/* use the --no-strict to avoid the "resource envelope is obsolete" error */
const args = ['--no-strict']; // http://stackoverflow.com/a/26204757
async function codesign (identity, entitlement, keychain, file, tool) {
if (identity === undefined) {
throw new Error('--identity is required to sign');
}
if (tool === 'rcodesign') {
console.error('WARNING: Signing with the experimental rcodesign tool');
const args = [];
args.push('sign'); // action

args.push('-v');
args.push('--pem-source'); // action
const pemFile = '/Users/pancake/iphone.pem';
args.push(pemFile);

args.push('--code-resources-path');
args.push('/tmp/csreq.bin');
// rcodesign bug makes this flag to not sign the binary at all
args.push('--extra-digest');
args.push('sha256');
args.push('--extra-digest');
args.push('sha384');
// args.push('--binary-identifier');
// args.push('com.tacobellspain.app');
/*
args.push('--code-signature-flags');
args.push('runtime');
*/
// --p12-file developer-id.p12
// --p12-password-file ~/.certificate-password
// --code-signature-flags runtime
// path/to/executable
/*
if (typeof entitlement === 'string' && entitlement !== '') {
args.push('-e');
args.push(entitlement);
}
args.push('--binary-identifier');
args.push(identity);
if (typeof keychain === 'string') {
args.push('--keychain-fingerprint');
args.push(keychain);
}
*/
args.push(file); // input
args.push(file + '.signed'); // output
console.error('rcodesign ' + args.join(' '));
const a = await execProgram('rcodesign', args, null);
if (a.code === 0) {
await execProgram('rm', ['-rf', file], null);
await execProgram('mv', [file + '.signed', file], null);
}
console.log(a.stderr);
return execProgram('cp', [file, '/tmp/newsigned'], null);
}
/* use the --no-strict to avoid the "resource envelope is obsolete" error */
const args = ['--no-strict']; // http://stackoverflow.com/a/26204757
args.push('-fs', identity);
// args.push('-v');
// args.push('--deep');
Expand All @@ -140,6 +190,12 @@ async function pseudoSign (entitlement, file) {
}

async function verifyCodesign (file, keychain, cb) {
/*
if (tool === 'rcodesign') {
const args = ['verify', file];
return execProgram(getTool('rcodesign'), args, null, cb);
}
*/
const args = ['-v', '--no-strict'];
if (typeof keychain === 'string') {
args.push('--keychain=' + keychain);
Expand Down