blob: 468d133ed8ac0fdfaf66b90190f891a81ec72910 [file] [log] [blame] [view]
andybons222c4ee2015-08-25 16:51:031# Handling repeated failures of rebaseall to allow cygwin remaps
andybons3322f762015-08-24 21:37:092
3Sometimes DLLs over which cygwin has no control get mapped into cygwin
4processes at locations that cygwin has chosen for its libraries.
andybons222c4ee2015-08-25 16:51:035This has been seen primarily with anti-virus DLLs. When this occurs,
andybons3322f762015-08-24 21:37:096cygwin must be instructed during the rebase to avoid the area of
7memory where that DLL is mapped.
8
andybons222c4ee2015-08-25 16:51:039## Background
andybons3322f762015-08-24 21:37:0910
andybons222c4ee2015-08-25 16:51:0311Some background for this is available on
12http://www.dont-panic.cc/capi/2007/10/29/git-svn-fails-with-fatal-error-unable-to-remap/
andybons3322f762015-08-24 21:37:0913
14Because of unix fork semantics (presumably), cygwin libraries must be
15mapped in the same location in both parent and child of a fork. All
16cygwin libraries have hints in them as to where they should be mapped
17in a processes address space; if those hints are followed, each
18library will be mapped in the same location in both address spaces.
19However, Windows is perfectly happy mapping a DLL anywhere in the
20address space; the hint is not considered controlling. The remapping
21error occurs when a cygwin process starts and one of its libraries
22cannot be mapped to the location specified by its hint.
23
24/usr/bin/rebaseall changes the DLL hints for all of the cygwin
25libraries so that there are no inter-library conflicts; it does this
26by choosing a contiguous but not overlapping library layout starting
27at a base address and working down. This process makes sure there are
28no intra-cygwin conflicts, but cannot deal with conflicts with
29external DLLs that are in cygwin process address spaces
30(e.g. anti-virus DLLs).
31
32To handle this case, you need to figure out what the problematic
33non-cygwin library is, where it is in the address space, and do the
34rebase all so that no cygwin hints map libraries to that location.
35
andybons222c4ee2015-08-25 16:51:0336## Details
andybons3322f762015-08-24 21:37:0937
andybons222c4ee2015-08-25 16:51:0338* Download the ListDLLs executable from
39 [sysinternals](http://technet.microsoft.com/en-us/sysinternals/bb896656.aspx)
40* Run it as administrator while some cygwin commands are running.
41* Scan the output for the cygwin process (identifiable by the command) and for
42 DLLs in that process that do not look like cygwin DLLs (like an AV). Note
43 the location of those libraries (there will usually only be the one).
44* Pick an address space location lower than its starting address.
45* Quit all cygwin processes.
46* Run a windows command shell as administrator
47* cd in \cygwin\bin
48* Run `ash /usr/bin/rebaseall -b <base address>` (This command can also take a
49 `-v` flag if you want to see the DLL layout.)
andybons3322f762015-08-24 21:37:0950
51That should fix the problem.
52
andybons222c4ee2015-08-25 16:51:0353## Failed rebaseall
andybons3322f762015-08-24 21:37:0954
andybons222c4ee2015-08-25 16:51:0355If you pick a base address that is too low, you may end up with a broken cygwin
56install. You can reinstall it by running cygwin's setup.exe again, and on the
57package selection page, clicking the "All" entry to Reinstall. You may have to
58do this twice, as you may get errors on the first reinstall pass.