Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
40 lines
982 B
Plaintext
40 lines
982 B
Plaintext
// Copyright 2017 Lovell Fuller and others.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
'use strict';
|
|
|
|
const interpreterPath = (elf) => {
|
|
if (elf.length < 64) {
|
|
return null;
|
|
}
|
|
if (elf.readUInt32BE(0) !== 0x7F454C46) {
|
|
// Unexpected magic bytes
|
|
return null;
|
|
}
|
|
if (elf.readUInt8(4) !== 2) {
|
|
// Not a 64-bit ELF
|
|
return null;
|
|
}
|
|
if (elf.readUInt8(5) !== 1) {
|
|
// Not little-endian
|
|
return null;
|
|
}
|
|
const offset = elf.readUInt32LE(32);
|
|
const size = elf.readUInt16LE(54);
|
|
const count = elf.readUInt16LE(56);
|
|
for (let i = 0; i < count; i++) {
|
|
const headerOffset = offset + (i * size);
|
|
const type = elf.readUInt32LE(headerOffset);
|
|
if (type === 3) {
|
|
const fileOffset = elf.readUInt32LE(headerOffset + 8);
|
|
const fileSize = elf.readUInt32LE(headerOffset + 32);
|
|
return elf.subarray(fileOffset, fileOffset + fileSize).toString().replace(/\0.*$/g, '');
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
|
|
module.exports = {
|
|
interpreterPath
|
|
};
|