Skip to content

Commit

Permalink
Fix overriding async node API
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz committed Sep 29, 2014
1 parent e3ae062 commit e24976c
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions atom/common/lib/asar.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ fs.readdirSync = (p) ->
files

# Override APIs that rely on passing file path instead of content to C++.
overrideAPI = (module, name, arg = 0) ->
overrideAPISync = (module, name, arg = 0) ->
old = module[name]
module[name] = ->
p = arguments[arg]
Expand All @@ -237,9 +237,28 @@ overrideAPI = (module, name, arg = 0) ->
arguments[arg] = newPath
old.apply this, arguments

overrideAPI process, 'dlopen', 1
overrideAPI require('module')._extensions, '.node', 1
overrideAPI = (module, name, arg = 0) ->
old = module[name]
module[name] = ->
p = arguments[arg]
[isAsar, asarPath, filePath] = splitPath p
return old.apply this, arguments unless isAsar

callback = arguments[arguments.length - 1]
return overrideAPISync module, name, arg unless typeof callback is 'function'

archive = getOrCreateArchive asarPath
return callback new Error("Invalid package #{asarPath}") unless archive

newPath = archive.copyFileOut filePath
return callback createNotFoundError(asarPath, filePath) unless newPath

arguments[arg] = newPath
old.apply this, arguments

overrideAPI fs, 'open'
overrideAPI fs, 'openSync'
overrideAPI child_process, 'fork'
overrideAPI child_process, 'execFile'
overrideAPISync process, 'dlopen', 1
overrideAPISync require('module')._extensions, '.node', 1
overrideAPISync fs, 'openSync'
overrideAPISync child_process, 'fork'

0 comments on commit e24976c

Please sign in to comment.