Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Skip lipo if native module is already universal. Add native module fixtures for lipo tests #126

Draft
wants to merge 20 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
01257e7
fix: when native modules are already universal, don't lipo. adds `nod…
mmaietta Feb 19, 2025
5f15d75
add test `different app dirs with different macho files (shim and lipo)`
mmaietta Feb 19, 2025
49e4ec2
add additional test
mmaietta Feb 19, 2025
977e346
Merge commit 'd90d573ccf69a5b14b91aa818c8b97e0e6840399' into add-nati…
mmaietta Feb 22, 2025
e1871f3
PR feedback
mmaietta Feb 22, 2025
462527e
gotta close `fd`
mmaietta Feb 22, 2025
66f2c33
use `stream` to read first 4 bytes. copy native fixture before packin…
mmaietta Feb 22, 2025
61abfd3
convert params to object
mmaietta Feb 22, 2025
67a8437
rename `createTestApp` to `createStagingAppDir` and add jsdoc to the …
mmaietta Feb 23, 2025
87412e6
Merge branch 'main' into add-native-module-tests
mmaietta Feb 23, 2025
05e3451
Merge commit '2b67c905a6bcf10dafea0c208df9cf374ac109dc' into add-nati…
mmaietta Feb 28, 2025
7fff35e
compiler error from merge conflict
mmaietta Feb 28, 2025
0c13e55
update snapshots
mmaietta Feb 28, 2025
7e3167b
update snapshots
mmaietta Feb 28, 2025
17bcff3
only check x64Content since it's the tmp app
mmaietta Mar 1, 2025
24d5d2c
compile macho binaries at runtime using hellow-world.c for fixtures i…
mmaietta Mar 19, 2025
753a3a0
Update jest.setup.ts
mmaietta Apr 1, 2025
ce11997
Update jest.setup.ts
mmaietta Apr 1, 2025
07658c9
Merge commit '5b957e6858afca80a53a81ca66e2cd274f6357a9' into add-nati…
mmaietta Apr 1, 2025
a3ef4cb
remove unstable properties for specific keys
mmaietta Apr 2, 2025
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
26 changes: 25 additions & 1 deletion jest.setup.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
import { execFileSync } from 'child_process';
import * as fs from 'fs-extra';
import * as path from 'path';
import { appsDir, asarsDir, templateApp } from './test/util';
import { appsDir, asarsDir, fixtureDir, templateApp } from './test/util';

// generates binaries from hello-world.c
// hello-world-universal, hello-world-x86_64, hello-world-arm64
const generateMachO = () => {
const src = path.resolve(fixtureDir, 'hello-world.c');

const outputFiles = ['x86_64', 'arm64'].map((arch) => {
const machO = path.resolve(appsDir, `hello-world-${arch === 'x86_64' ? 'x64' : arch}`);
execFileSync('clang', ['-arch', arch, '-o', machO, src]);
return machO;
});

execFileSync('lipo', [
...outputFiles,
'-create',
'-output',
path.resolve(appsDir, 'hello-world-universal'),
]);
};

export default async () => {
await fs.remove(appsDir);
await fs.mkdirp(appsDir);

// generate mach-o binaries to be leveraged in lipo tests
generateMachO();

await templateApp('Arm64Asar.app', 'arm64', async (appPath) => {
await fs.copy(
path.resolve(asarsDir, 'app.asar'),
Expand Down
11 changes: 7 additions & 4 deletions src/asar-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,14 +148,13 @@ export const mergeASARs = async ({
const x64Content = asar.extractFile(x64AsarPath, file);
const arm64Content = asar.extractFile(arm64AsarPath, file);

// Skip file if the same content
if (x64Content.compare(arm64Content) === 0) {
continue;
}

if (
MACHO_UNIVERSAL_MAGIC.has(x64Content.readUInt32LE(0)) &&
MACHO_UNIVERSAL_MAGIC.has(arm64Content.readUInt32LE(0))
) {
// Skip universal Mach-O files.
if (isUniversalMachO(x64Content)) {
continue;
}

Expand Down Expand Up @@ -223,3 +222,7 @@ export const mergeASARs = async ({
await Promise.all([fs.remove(x64Dir), fs.remove(arm64Dir)]);
}
};

export const isUniversalMachO = (fileContent: Buffer) => {
return MACHO_UNIVERSAL_MAGIC.has(fileContent.readUInt32LE(0));
};
12 changes: 12 additions & 0 deletions src/file-utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { spawn, ExitCodeError } from '@malept/cross-spawn-promise';
import * as fs from 'fs-extra';
import * as path from 'path';
import { promises as stream } from 'node:stream';

const MACHO_PREFIX = 'Mach-O ';

Expand Down Expand Up @@ -71,3 +72,14 @@ export const getAllAppFiles = async (appPath: string): Promise<AppFile[]> => {

return files;
};

export const readMachOHeader = async (path: string) => {
const chunks: Buffer[] = [];
// no need to read the entire file, we only need the first 4 bytes of the file to determine the header
await stream.pipeline(fs.createReadStream(path, { start: 0, end: 3 }), async function* (source) {
for await (const chunk of source) {
chunks.push(chunk);
}
});
return Buffer.concat(chunks);
};
17 changes: 13 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { spawn } from '@malept/cross-spawn-promise';
import * as asar from '@electron/asar';
import { spawn } from '@malept/cross-spawn-promise';
import * as dircompare from 'dir-compare';
import * as fs from 'fs-extra';
import { minimatch } from 'minimatch';
import * as os from 'os';
import * as path from 'path';
import * as plist from 'plist';
import * as dircompare from 'dir-compare';

import { AppFile, AppFileType, getAllAppFiles } from './file-utils';
import { AsarMode, detectAsarMode, mergeASARs } from './asar-utils';
import { AsarMode, detectAsarMode, isUniversalMachO, mergeASARs } from './asar-utils';
import { AppFile, AppFileType, getAllAppFiles, readMachOHeader } from './file-utils';
import { sha } from './sha';
import { d } from './debug';
import { computeIntegrityData } from './integrity';
Expand Down Expand Up @@ -162,6 +162,15 @@ export const makeUniversalApp = async (opts: MakeUniversalOpts): Promise<void> =
const first = await fs.realpath(path.resolve(tmpApp, machOFile.relativePath));
const second = await fs.realpath(path.resolve(opts.arm64AppPath, machOFile.relativePath));

if (
isUniversalMachO(await readMachOHeader(first)) &&
isUniversalMachO(await readMachOHeader(second))
) {
d(machOFile.relativePath, `is already universal across builds, skipping lipo`);
knownMergedMachOFiles.add(machOFile.relativePath);
continue;
}

const x64Sha = await sha(path.resolve(opts.x64AppPath, machOFile.relativePath));
const arm64Sha = await sha(path.resolve(opts.arm64AppPath, machOFile.relativePath));
if (x64Sha === arm64Sha) {
Expand Down
Loading
Loading