Fix: application SIGBUS when starting in parallel with sessiond
authorDavid Goulet <dgoulet@efficios.com>
Wed, 6 Nov 2013 15:49:43 +0000 (10:49 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 6 Nov 2013 15:49:43 +0000 (10:49 -0500)
commit7972d61991f4c7e25772502a3a7ebfe57a57645d
tree4bf8c702e3346c877339f393e269705e3b022fa5
parent0233a6a578456d763172c241a99ed7254fa50998
Fix: application SIGBUS when starting in parallel with sessiond

There is a race between application startup and sessiond startup, where there
is an intermediate state where applications can SIGBUS if they see a zero-sized
shm, if the shm has been created, but not ftruncated yet.

On the sessiond side, we need to ensure that the shared memory is writeable by
applications as long as its size is 0, which allow applications to perform
ftruncate and extend its size.

On the UST side, another commit needs to ensure that UST can read the shared
memory file descriptor with a read() system call before they try accessing it
through a memory map (which triggers the SIGBUS if the access goes beyond the
file size)

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/bin/lttng-sessiond/shm.c
This page took 0.0258620000000001 seconds and 4 git commands to generate.