electron/lib/common/asar.js

757 lines
24 KiB
JavaScript
Raw Normal View History

(function () {
2016-03-25 19:50:43 +00:00
const asar = process.binding('atom_common_asar')
const assert = require('assert')
2018-09-13 16:10:51 +00:00
const { Buffer } = require('buffer')
const childProcess = require('child_process')
2016-03-25 19:50:43 +00:00
const path = require('path')
const util = require('util')
2016-01-12 02:40:23 +00:00
const envNoAsar = process.env.ELECTRON_NO_ASAR &&
process.type !== 'browser' &&
process.type !== 'renderer'
const isAsarDisabled = () => process.noAsar || envNoAsar
2016-01-12 02:40:23 +00:00
/**
* @param {!Function} functionToCall
* @param {!Array|undefined} args
*/
const nextTick = (functionToCall, args = []) => {
process.nextTick(() => functionToCall(...args))
}
// Cache asar archive objects.
const cachedArchives = new Map()
const getOrCreateArchive = archivePath => {
const isCached = cachedArchives.has(archivePath)
if (isCached) {
return cachedArchives.get(archivePath)
}
const newArchive = asar.createArchive(archivePath)
if (!newArchive) return null
cachedArchives.set(archivePath, newArchive)
return newArchive
2016-03-25 19:50:43 +00:00
}
2016-01-12 02:40:23 +00:00
2016-01-19 18:25:03 +00:00
// Clean cache on quit.
process.on('exit', () => {
for (const archive of cachedArchives.values()) {
archive.destroy()
2016-01-19 18:25:03 +00:00
}
cachedArchives.clear()
2016-03-25 19:50:43 +00:00
})
2016-01-12 02:40:23 +00:00
const ASAR_EXTENSION = '.asar'
2016-01-19 18:25:03 +00:00
// Separate asar package's path from full path.
const splitPath = archivePathOrBuffer => {
// Shortcut for disabled asar.
2018-09-13 16:10:51 +00:00
if (isAsarDisabled()) return { isAsar: false }
2016-07-25 17:07:39 +00:00
// Check for a bad argument type.
let archivePath = archivePathOrBuffer
if (Buffer.isBuffer(archivePathOrBuffer)) {
archivePath = archivePathOrBuffer.toString()
}
2018-09-13 16:10:51 +00:00
if (typeof archivePath !== 'string') return { isAsar: false }
if (archivePath.endsWith(ASAR_EXTENSION)) {
2018-09-13 16:10:51 +00:00
return { isAsar: true, asarPath: archivePath, filePath: '' }
}
archivePath = path.normalize(archivePath)
const index = archivePath.lastIndexOf(`${ASAR_EXTENSION}${path.sep}`)
2018-09-13 16:10:51 +00:00
if (index === -1) return { isAsar: false }
// E.g. for "//some/path/to/archive.asar/then/internal.file"...
return {
isAsar: true,
// "//some/path/to/archive.asar"
asarPath: archivePath.substr(0, index + ASAR_EXTENSION.length),
// "then/internal.file" (with a path separator excluded)
filePath: archivePath.substr(index + ASAR_EXTENSION.length + 1)
2016-01-12 02:40:23 +00:00
}
2016-03-25 19:50:43 +00:00
}
2016-01-12 02:40:23 +00:00
2016-01-19 18:25:03 +00:00
// Convert asar archive's Stats object to fs's Stats object.
2016-07-25 17:07:39 +00:00
let nextInode = 0
2016-01-19 18:25:03 +00:00
2016-07-25 17:07:39 +00:00
const uid = process.getuid != null ? process.getuid() : 0
const gid = process.getgid != null ? process.getgid() : 0
2016-01-19 18:25:03 +00:00
2016-07-25 17:07:39 +00:00
const fakeTime = new Date()
const msec = (date) => (date || fakeTime).getTime()
2016-01-19 18:25:03 +00:00
2016-07-25 17:07:39 +00:00
const asarStatsToFsStats = function (stats) {
2018-09-13 16:10:51 +00:00
const { Stats, constants } = require('fs')
let mode = constants.S_IROTH ^ constants.S_IRGRP ^ constants.S_IRUSR ^ constants.S_IWUSR
if (stats.isFile) {
mode ^= constants.S_IFREG
} else if (stats.isDirectory) {
mode ^= constants.S_IFDIR
} else if (stats.isLink) {
mode ^= constants.S_IFLNK
2016-03-25 19:50:43 +00:00
}
return new Stats(
2018-09-13 16:10:51 +00:00
1, // dev
mode, // mode
1, // nlink
uid,
gid,
0, // rdev
undefined, // blksize
++nextInode, // ino
stats.size,
undefined, // blocks,
msec(stats.atime), // atim_msec
msec(stats.mtime), // mtim_msec
msec(stats.ctime), // ctim_msec
msec(stats.birthtime) // birthtim_msec
)
2016-03-25 19:50:43 +00:00
}
2016-01-19 18:25:03 +00:00
const AsarError = {
NOT_FOUND: 'NOT_FOUND',
NOT_DIR: 'NOT_DIR',
NO_ACCESS: 'NO_ACCESS',
INVALID_ARCHIVE: 'INVALID_ARCHIVE'
}
2018-09-13 16:10:51 +00:00
const createError = (errorType, { asarPath, filePath } = {}) => {
let error
switch (errorType) {
case AsarError.NOT_FOUND:
error = new Error(`ENOENT, ${filePath} not found in ${asarPath}`)
error.code = 'ENOENT'
error.errno = -2
break
case AsarError.NOT_DIR:
error = new Error('ENOTDIR, not a directory')
error.code = 'ENOTDIR'
error.errno = -20
break
case AsarError.NO_ACCESS:
error = new Error(`EACCES: permission denied, access '${filePath}'`)
error.code = 'EACCES'
error.errno = -13
break
case AsarError.INVALID_ARCHIVE:
error = new Error(`Invalid package ${asarPath}`)
break
default:
assert.fail(`Invalid error type "${errorType}" passed to createError.`)
}
return error
2016-03-25 19:50:43 +00:00
}
2016-01-12 02:40:23 +00:00
const overrideAPISync = function (module, name, pathArgumentIndex) {
if (pathArgumentIndex == null) pathArgumentIndex = 0
2016-07-25 17:07:39 +00:00
const old = module[name]
2016-03-25 19:50:43 +00:00
module[name] = function () {
const pathArgument = arguments[pathArgumentIndex]
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return old.apply(this, arguments)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
2018-09-13 16:10:51 +00:00
if (!archive) throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
2016-07-25 17:07:39 +00:00
const newPath = archive.copyFileOut(filePath)
2018-09-13 16:10:51 +00:00
if (!newPath) throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
2016-07-25 17:07:39 +00:00
arguments[pathArgumentIndex] = newPath
2016-03-25 19:50:43 +00:00
return old.apply(this, arguments)
}
}
2016-01-19 18:25:03 +00:00
const overrideAPI = function (module, name, pathArgumentIndex) {
if (pathArgumentIndex == null) pathArgumentIndex = 0
2016-07-25 17:07:39 +00:00
const old = module[name]
2016-03-25 19:50:43 +00:00
module[name] = function () {
const pathArgument = arguments[pathArgumentIndex]
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return old.apply(this, arguments)
2016-07-25 17:07:39 +00:00
const callback = arguments[arguments.length - 1]
if (typeof callback !== 'function') {
return overrideAPISync(module, name, pathArgumentIndex)
}
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
2016-07-25 17:07:39 +00:00
const newPath = archive.copyFileOut(filePath)
if (!newPath) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
2016-07-25 17:07:39 +00:00
arguments[pathArgumentIndex] = newPath
2016-03-25 19:50:43 +00:00
return old.apply(this, arguments)
}
if (old[util.promisify.custom]) {
module[name][util.promisify.custom] = function () {
const pathArgument = arguments[pathArgumentIndex]
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return old[util.promisify.custom].apply(this, arguments)
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
return Promise.reject(createError(AsarError.INVALID_ARCHIVE, { asarPath }))
}
const newPath = archive.copyFileOut(filePath)
if (!newPath) {
2018-09-13 16:10:51 +00:00
return Promise.reject(createError(AsarError.NOT_FOUND, { asarPath, filePath }))
}
arguments[pathArgumentIndex] = newPath
return old[util.promisify.custom].apply(this, arguments)
}
}
2016-03-25 19:50:43 +00:00
}
2016-01-19 18:25:03 +00:00
// Override fs APIs.
exports.wrapFsWithAsar = fs => {
2016-07-25 17:07:39 +00:00
const logFDs = {}
const logASARAccess = (asarPath, filePath, offset) => {
if (!process.env.ELECTRON_LOG_ASAR_READS) return
if (!logFDs[asarPath]) {
2016-03-25 19:50:43 +00:00
const path = require('path')
const logFilename = `${path.basename(asarPath, '.asar')}-access-log.txt`
2016-07-25 17:07:39 +00:00
const logPath = path.join(require('os').tmpdir(), logFilename)
2016-03-25 19:50:43 +00:00
logFDs[asarPath] = fs.openSync(logPath, 'a')
}
fs.writeSync(logFDs[asarPath], `${offset}: ${filePath}\n`)
2016-03-25 19:50:43 +00:00
}
2018-09-13 16:10:51 +00:00
const { lstatSync } = fs
fs.lstatSync = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return lstatSync(pathArgument)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
2018-09-13 16:10:51 +00:00
if (!archive) throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
2016-07-25 17:07:39 +00:00
const stats = archive.stat(filePath)
2018-09-13 16:10:51 +00:00
if (!stats) throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
2016-03-25 19:50:43 +00:00
return asarStatsToFsStats(stats)
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { lstat } = fs
fs.lstat = (pathArgument, callback) => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return lstat(pathArgument, callback)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
const stats = archive.stat(filePath)
if (!stats) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
const fsStats = asarStatsToFsStats(stats)
nextTick(callback, [null, fsStats])
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { statSync } = fs
fs.statSync = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar } = splitPath(pathArgument)
if (!isAsar) return statSync(pathArgument)
2016-01-12 02:40:23 +00:00
2016-01-19 18:25:03 +00:00
// Do not distinguish links for now.
return fs.lstatSync(pathArgument)
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { stat } = fs
fs.stat = (pathArgument, callback) => {
2018-09-13 16:10:51 +00:00
const { isAsar } = splitPath(pathArgument)
if (!isAsar) return stat(pathArgument, callback)
2016-01-12 02:40:23 +00:00
2016-01-19 18:25:03 +00:00
// Do not distinguish links for now.
process.nextTick(() => fs.lstat(pathArgument, callback))
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { statSyncNoException } = fs
fs.statSyncNoException = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return statSyncNoException(pathArgument)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) return false
2016-07-25 17:07:39 +00:00
const stats = archive.stat(filePath)
if (!stats) return false
2016-03-25 19:50:43 +00:00
return asarStatsToFsStats(stats)
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { realpathSync } = fs
fs.realpathSync = function (pathArgument) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return realpathSync.apply(this, arguments)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
}
const fileRealPath = archive.realpath(filePath)
if (fileRealPath === false) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
}
return path.join(realpathSync(asarPath), fileRealPath)
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
fs.realpathSync.native = function (pathArgument) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return realpathSync.native.apply(this, arguments)
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
}
const fileRealPath = archive.realpath(filePath)
if (fileRealPath === false) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
}
return path.join(realpathSync.native(asarPath), fileRealPath)
}
2018-09-13 16:10:51 +00:00
const { realpath } = fs
fs.realpath = function (pathArgument, cache, callback) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return realpath.apply(this, arguments)
2016-01-19 18:25:03 +00:00
if (typeof cache === 'function') {
2016-03-25 19:50:43 +00:00
callback = cache
cache = undefined
2016-01-19 18:25:03 +00:00
}
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
const fileRealPath = archive.realpath(filePath)
if (fileRealPath === false) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
realpath(asarPath, (error, archiveRealPath) => {
if (error === null) {
const fullPath = path.join(archiveRealPath, fileRealPath)
callback(null, fullPath)
} else {
callback(error)
}
})
}
fs.realpath.native = function (pathArgument, cache, callback) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return realpath.native.apply(this, arguments)
if (typeof cache === 'function') {
callback = cache
cache = undefined
2016-01-19 18:25:03 +00:00
}
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
const fileRealPath = archive.realpath(filePath)
if (fileRealPath === false) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
realpath.native(asarPath, (error, archiveRealPath) => {
if (error === null) {
const fullPath = path.join(archiveRealPath, fileRealPath)
callback(null, fullPath)
} else {
callback(error)
}
2016-03-25 19:50:43 +00:00
})
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { exists } = fs
fs.exists = (pathArgument, callback) => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return exists(pathArgument, callback)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
const pathExists = (archive.stat(filePath) !== false)
nextTick(callback, [pathExists])
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
fs.exists[util.promisify.custom] = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return exists[util.promisify.custom](pathArgument)
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
return Promise.reject(error)
}
return Promise.resolve(archive.stat(filePath) !== false)
}
2018-09-13 16:10:51 +00:00
const { existsSync } = fs
fs.existsSync = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return existsSync(pathArgument)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) return false
2016-03-25 19:50:43 +00:00
return archive.stat(filePath) !== false
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { access } = fs
fs.access = function (pathArgument, mode, callback) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return access.apply(this, arguments)
if (typeof mode === 'function') {
callback = mode
mode = fs.constants.F_OK
}
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
const info = archive.getFileInfo(filePath)
if (!info) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
if (info.unpacked) {
const realPath = archive.copyFileOut(filePath)
return fs.access(realPath, mode, callback)
}
const stats = archive.stat(filePath)
if (!stats) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
if (mode & fs.constants.W_OK) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NO_ACCESS, { asarPath, filePath })
nextTick(callback, [error])
return
}
nextTick(callback)
}
2018-09-13 16:10:51 +00:00
const { accessSync } = fs
fs.accessSync = function (pathArgument, mode) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return accessSync.apply(this, arguments)
if (mode == null) mode = fs.constants.F_OK
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
}
const info = archive.getFileInfo(filePath)
if (!info) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
}
if (info.unpacked) {
const realPath = archive.copyFileOut(filePath)
return fs.accessSync(realPath, mode)
}
const stats = archive.stat(filePath)
if (!stats) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
}
if (mode & fs.constants.W_OK) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.NO_ACCESS, { asarPath, filePath })
}
}
2018-09-13 16:10:51 +00:00
const { readFile } = fs
fs.readFile = function (pathArgument, options, callback) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return readFile.apply(this, arguments)
2016-01-19 18:25:03 +00:00
if (typeof options === 'function') {
2016-03-25 19:50:43 +00:00
callback = options
options = { encoding: null }
} else if (typeof options === 'string') {
options = { encoding: options }
} else if (options === null || options === undefined) {
options = { encoding: null }
} else if (typeof options !== 'object') {
2017-07-31 01:32:45 +00:00
throw new TypeError('Bad arguments')
2016-01-19 18:25:03 +00:00
}
2017-07-31 01:32:45 +00:00
2018-09-13 16:10:51 +00:00
const { encoding } = options
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
2016-07-25 17:07:39 +00:00
const info = archive.getFileInfo(filePath)
if (!info) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
if (info.size === 0) {
nextTick(callback, [null, encoding ? '' : Buffer.alloc(0)])
return
}
2016-01-19 18:25:03 +00:00
if (info.unpacked) {
2016-07-25 17:07:39 +00:00
const realPath = archive.copyFileOut(filePath)
2016-03-25 19:50:43 +00:00
return fs.readFile(realPath, options, callback)
2016-01-19 18:25:03 +00:00
}
2017-08-01 09:52:48 +00:00
const buffer = Buffer.alloc(info.size)
2016-07-25 17:07:39 +00:00
const fd = archive.getFd()
if (!(fd >= 0)) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
2016-03-25 19:50:43 +00:00
logASARAccess(asarPath, filePath, info.offset)
fs.read(fd, buffer, 0, info.size, info.offset, error => {
2016-07-25 17:07:39 +00:00
callback(error, encoding ? buffer.toString(encoding) : buffer)
2016-03-25 19:50:43 +00:00
})
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { readFileSync } = fs
fs.readFileSync = function (pathArgument, options) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return readFileSync.apply(this, arguments)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
2018-09-13 16:10:51 +00:00
if (!archive) throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
2016-07-25 17:07:39 +00:00
const info = archive.getFileInfo(filePath)
2018-09-13 16:10:51 +00:00
if (!info) throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
if (info.size === 0) return (options) ? '' : Buffer.alloc(0)
2016-01-19 18:25:03 +00:00
if (info.unpacked) {
2016-07-25 17:07:39 +00:00
const realPath = archive.copyFileOut(filePath)
2016-03-25 19:50:43 +00:00
return fs.readFileSync(realPath, options)
2016-01-19 18:25:03 +00:00
}
2016-01-19 18:25:03 +00:00
if (!options) {
options = { encoding: null }
} else if (typeof options === 'string') {
options = { encoding: options }
} else if (typeof options !== 'object') {
2016-03-25 19:50:43 +00:00
throw new TypeError('Bad arguments')
2016-01-19 18:25:03 +00:00
}
2018-09-13 16:10:51 +00:00
const { encoding } = options
const buffer = Buffer.alloc(info.size)
2016-07-25 17:07:39 +00:00
const fd = archive.getFd()
2018-09-13 16:10:51 +00:00
if (!(fd >= 0)) throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
2016-03-25 19:50:43 +00:00
logASARAccess(asarPath, filePath, info.offset)
fs.readSync(fd, buffer, 0, info.size, info.offset)
return (encoding) ? buffer.toString(encoding) : buffer
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { readdir } = fs
fs.readdir = function (pathArgument, callback) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return readdir.apply(this, arguments)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.INVALID_ARCHIVE, { asarPath })
nextTick(callback, [error])
return
}
2016-07-25 17:07:39 +00:00
const files = archive.readdir(filePath)
if (!files) {
2018-09-13 16:10:51 +00:00
const error = createError(AsarError.NOT_FOUND, { asarPath, filePath })
nextTick(callback, [error])
return
}
nextTick(callback, [null, files])
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { readdirSync } = fs
fs.readdirSync = function (pathArgument) {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return readdirSync.apply(this, arguments)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.INVALID_ARCHIVE, { asarPath })
}
2016-07-25 17:07:39 +00:00
const files = archive.readdir(filePath)
if (!files) {
2018-09-13 16:10:51 +00:00
throw createError(AsarError.NOT_FOUND, { asarPath, filePath })
}
2016-03-25 19:50:43 +00:00
return files
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { internalModuleReadJSON } = process.binding('fs')
process.binding('fs').internalModuleReadJSON = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return internalModuleReadJSON(pathArgument)
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) return
2016-07-25 17:07:39 +00:00
const info = archive.getFileInfo(filePath)
if (!info) return
if (info.size === 0) return ''
2016-01-19 18:25:03 +00:00
if (info.unpacked) {
2016-07-25 17:07:39 +00:00
const realPath = archive.copyFileOut(filePath)
2018-09-13 16:10:51 +00:00
return fs.readFileSync(realPath, { encoding: 'utf8' })
2016-01-19 18:25:03 +00:00
}
const buffer = Buffer.alloc(info.size)
2016-07-25 17:07:39 +00:00
const fd = archive.getFd()
if (!(fd >= 0)) return
2016-03-25 19:50:43 +00:00
logASARAccess(asarPath, filePath, info.offset)
fs.readSync(fd, buffer, 0, info.size, info.offset)
return buffer.toString('utf8')
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { internalModuleStat } = process.binding('fs')
process.binding('fs').internalModuleStat = pathArgument => {
2018-09-13 16:10:51 +00:00
const { isAsar, asarPath, filePath } = splitPath(pathArgument)
if (!isAsar) return internalModuleStat(pathArgument)
// -ENOENT
2016-07-25 17:07:39 +00:00
const archive = getOrCreateArchive(asarPath)
if (!archive) return -34
2016-01-19 18:25:03 +00:00
// -ENOENT
2016-07-25 17:07:39 +00:00
const stats = archive.stat(filePath)
if (!stats) return -34
2016-01-19 18:25:03 +00:00
return (stats.isDirectory) ? 1 : 0
2016-03-25 19:50:43 +00:00
}
2016-01-19 18:25:03 +00:00
// Calling mkdir for directory inside asar archive should throw ENOTDIR
// error, but on Windows it throws ENOENT.
// This is to work around the recursive looping bug of mkdirp since it is
// widely used.
if (process.platform === 'win32') {
2018-09-13 16:10:51 +00:00
const { mkdir } = fs
fs.mkdir = (pathArgument, mode, callback) => {
if (typeof mode === 'function') {
callback = mode
mode = undefined
}
2018-09-13 16:10:51 +00:00
const { isAsar, filePath } = splitPath(pathArgument)
if (isAsar && filePath.length > 0) {
const error = createError(AsarError.NOT_DIR)
nextTick(callback, [error])
return
}
mkdir(pathArgument, mode, callback)
2016-03-25 19:50:43 +00:00
}
2016-07-25 17:07:39 +00:00
2018-09-13 16:10:51 +00:00
const { mkdirSync } = fs
fs.mkdirSync = function (pathArgument, mode) {
2018-09-13 16:10:51 +00:00
const { isAsar, filePath } = splitPath(pathArgument)
if (isAsar && filePath.length) throw createError(AsarError.NOT_DIR)
return mkdirSync(pathArgument, mode)
2016-03-25 19:50:43 +00:00
}
}
// Executing a command string containing a path to an asar
// archive confuses `childProcess.execFile`, which is internally
// called by `childProcess.{exec,execSync}`, causing
// Electron to consider the full command as a single path
// to an archive.
2018-09-13 16:10:51 +00:00
const { exec, execSync } = childProcess
childProcess.exec = invokeWithNoAsar(exec)
childProcess.exec[util.promisify.custom] = invokeWithNoAsar(exec[util.promisify.custom])
childProcess.execSync = invokeWithNoAsar(execSync)
function invokeWithNoAsar (func) {
return function () {
2016-07-25 17:07:39 +00:00
const processNoAsarOriginalValue = process.noAsar
process.noAsar = true
2016-09-06 20:40:25 +00:00
try {
return func.apply(this, arguments)
2016-09-06 20:40:25 +00:00
} finally {
process.noAsar = processNoAsarOriginalValue
}
}
}
2016-03-25 19:50:43 +00:00
overrideAPI(fs, 'open')
overrideAPI(childProcess, 'execFile')
2016-03-25 19:50:43 +00:00
overrideAPISync(process, 'dlopen', 1)
overrideAPISync(require('module')._extensions, '.node', 1)
overrideAPISync(fs, 'openSync')
2016-07-25 17:07:39 +00:00
overrideAPISync(childProcess, 'execFileSync')
2016-03-25 19:50:43 +00:00
}
})()