Re: A note about testing EXEC_BACKEND on recent Linuxen

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: A note about testing EXEC_BACKEND on recent Linuxen
Дата
Msg-id 200602011559.k11Fxd114543@candle.pha.pa.us
обсуждение исходный текст
Ответ на A note about testing EXEC_BACKEND on recent Linuxen  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: A note about testing EXEC_BACKEND on recent Linuxen  (Martijn van Oosterhout <kleptog@svana.org>)
Список pgsql-hackers
Added code comment:
       /*        *  Attach process to shared data structures.  If testing        *  EXEC_BACKEND on Linux, you must run
thisas root        *  before starting the postmaster:        *        *      echo 0
>/proc/sys/kernel/randomize_va_space       *        *  This prevents a randomized stack base address that causes
* child shared memory to be at a different address than        *  the parent, making it impossible to attached to
shared       *  memory.  Return the value to '1' when finished.        */       CreateSharedMemoryAndSemaphores(false,
0);


---------------------------------------------------------------------------

Tom Lane wrote:
> I just wasted a couple hours trying to determine why an EXEC_BACKEND
> build would randomly fail on Fedora Core 4.  It seems the reason is that
> by default, recent Linux kernels randomize the stack base address ---
> not by a lot, but enough to cause child processes to sometimes be unable
> to attach to the shared memory segment at the same place the postmaster
> did.
> 
> You can work around this by doing (as root)
>     echo 0 >/proc/sys/kernel/randomize_va_space
> before starting the postmaster.  You'll probably want to set it back to
> 1 when done experimenting with EXEC_BACKEND, since address randomization
> is a useful security hack.
> 
> Just seems like something that should be in our archives ...
> 
>             regards, tom lane
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
> 
>                http://archives.postgresql.org
> 

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Pavel Stehule"
Дата:
Сообщение: Re: system triggers
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Cleaning up the INET/CIDR mess