Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-28 Thread Philippe Gerum
Jan Kiszka wrote:
> Philippe Gerum wrote:
>> Jan Kiszka wrote:
>>> Philippe Gerum wrote:
 Jan Kiszka wrote:
> Philippe Gerum wrote:
>> Jan Kiszka wrote:
>>> Philippe Gerum wrote:
 Jan Kiszka wrote:
> Hi,
>
> bad news, everyone :(. According to the result of some lengthy debug
> session with a customer and several ad-hoc lttng instrumentations, we
> have a fatal bug in the nucleus' implementation of the lock stealing
> algorithm. Consider this scenario:
>
> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>cleared.
>
> 2. Thread A blocks on some further Mutex Y (in our case it was a
>semaphore, but that doesn't matter).
>
> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>its CPU.
>
> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, 
> but
>also notices that the XNWAKEN flag of Thread A is set. Thus it 
> steals
>the mutex although Thread A already entered the critical section -
>and hell breaks loose...
>
 See commit #3795, and change log entry from 2008-05-15. Unless I 
 misunderstood
 your description, this bug was fixed in 2.4.4.
>>> Oh, fatally missed that fix.
>>>
>>> Anyway, the patch looks a bit unclean to me. Either you are lacking
>>> wwake = NULL in xnpod_suspend_thread, or the whole information encoded
>>> in XNWAKEN can already be covered by wwake directly.
>>>
>> Clearing wwake has to be done when returning from xnsynch_sleep_on, only 
>> when
>> the code knows that ownership is eventually granted to the caller; 
>> making such a
>> decision in xnpod_suspend_thread() would be wrong.
> What about
>
> http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#1411
>
> then?
>
 That portion of code applies _before_ the thread enters suspended state. We
 bother for the other side, i.e. when it resumes from actual suspension, 
 until it
 has been decided whether it should be allowed to keep running, or redo the 
 wait
 due to the resource being stolen away.
>>> Then clearing XNWAKEN here is useless - it comes for free, but it has no
>>> practical effect.
>> pri(A) < pri(B, C, D)
>>
>> thread A: xnsynch_sleep_on(X)
>> thread B: xnsynch_wakeup_one_sleeper(X), A owns X, not running
>> thread C: xnpod_suspend_thread(A), A is forcibly suspended
>> thread D: xnsynch_sleep_on(X)
>>
>> next, without clearance:
>> thread D: steals X, does not block
>>
>> next, with clearance:
>> thread D: blocks
>>
>> This does have a practical effect: a thread that is suspended has its state
>> fully frozen, which includes preserving all acquired ownerships.
> 
> Don't understand yet why it is a problem to steal X from A when it is
> forcibly suspended and was not yet able to pick up X - that is what lock
> stealing is about. Will it cause troubles on resume of A?

No this won't, but if an application thread uses eager suspend-resume sequences
on lower priority threads that could hold mutexes, I do want this code to die
painfully with a lock up whenever possible. Said differently, I don't want to
help that insane code to look like sane in any way, because of the lock stealing
papering over the fundamental issue, which is basically that applying eager
suspension to threads that may hold resources without any protection against the
former action is just silly.

i.e. If D is given lock X because the wake up bit is kept raised for thread A
albeit it has been eagerly suspended, this would help hiding an ugly bug.

> 
>> Clearing the wwake field after xnsynch_sleep_on has returned from
>> xnpod_suspend_thread is no compensation for that initial clearance in
>> xnpod_suspend_thread, because the relevant code would be run by different 
>> threads.
> 
>>  For code clarity reasons, this should be remove IMHO.
>> The awake bit has been kept mainly because the nucleus commonly uses 
>> bitmasks to
>> get fast access to thread status & information. It's not mandatory to 
>> have this
>> one in, it's just conforming to the rest of the implementation.
> I see, but redundancy come with some ugliness as well. And we add more
> code to hot paths.
>
 The hot path barely involves facing a stolen resource situation. Most of 
 the
 time, the XNWAKEN test will be false, or this would mean that the 
 application
 exhibits a high priority thread that routinely and frequently competes 
 with a
 low priority one for gaining access to such resource. I would rather fix 
 the
 latter code first.
>>> Besides that the l

Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-20 Thread Jan Kiszka
Philippe Gerum wrote:
> Jan Kiszka wrote:
>> Philippe Gerum wrote:
>>> Jan Kiszka wrote:
 Philippe Gerum wrote:
> Jan Kiszka wrote:
>> Philippe Gerum wrote:
>>> Jan Kiszka wrote:
 Hi,

 bad news, everyone :(. According to the result of some lengthy debug
 session with a customer and several ad-hoc lttng instrumentations, we
 have a fatal bug in the nucleus' implementation of the lock stealing
 algorithm. Consider this scenario:

 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
cleared.

 2. Thread A blocks on some further Mutex Y (in our case it was a
semaphore, but that doesn't matter).

 3. Thread B signals the availability of Mutex Y to Thread A, thus it
also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
its CPU.

 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, 
 but
also notices that the XNWAKEN flag of Thread A is set. Thus it 
 steals
the mutex although Thread A already entered the critical section -
and hell breaks loose...

>>> See commit #3795, and change log entry from 2008-05-15. Unless I 
>>> misunderstood
>>> your description, this bug was fixed in 2.4.4.
>> Oh, fatally missed that fix.
>>
>> Anyway, the patch looks a bit unclean to me. Either you are lacking
>> wwake = NULL in xnpod_suspend_thread, or the whole information encoded
>> in XNWAKEN can already be covered by wwake directly.
>>
> Clearing wwake has to be done when returning from xnsynch_sleep_on, only 
> when
> the code knows that ownership is eventually granted to the caller; making 
> such a
> decision in xnpod_suspend_thread() would be wrong.
 What about

 http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#1411

 then?

>>> That portion of code applies _before_ the thread enters suspended state. We
>>> bother for the other side, i.e. when it resumes from actual suspension, 
>>> until it
>>> has been decided whether it should be allowed to keep running, or redo the 
>>> wait
>>> due to the resource being stolen away.
>> Then clearing XNWAKEN here is useless - it comes for free, but it has no
>> practical effect.
> 
> pri(A) < pri(B, C, D)
> 
> thread A: xnsynch_sleep_on(X)
> thread B: xnsynch_wakeup_one_sleeper(X), A owns X, not running
> thread C: xnpod_suspend_thread(A), A is forcibly suspended
> thread D: xnsynch_sleep_on(X)
> 
> next, without clearance:
> thread D: steals X, does not block
> 
> next, with clearance:
> thread D: blocks
> 
> This does have a practical effect: a thread that is suspended has its state
> fully frozen, which includes preserving all acquired ownerships.

Don't understand yet why it is a problem to steal X from A when it is
forcibly suspended and was not yet able to pick up X - that is what lock
stealing is about. Will it cause troubles on resume of A?

> 
> Clearing the wwake field after xnsynch_sleep_on has returned from
> xnpod_suspend_thread is no compensation for that initial clearance in
> xnpod_suspend_thread, because the relevant code would be run by different 
> threads.

> 
>  For code clarity reasons, this should be remove IMHO.
> The awake bit has been kept mainly because the nucleus commonly uses 
> bitmasks to
> get fast access to thread status & information. It's not mandatory to 
> have this
> one in, it's just conforming to the rest of the implementation.
 I see, but redundancy come with some ugliness as well. And we add more
 code to hot paths.

>>> The hot path barely involves facing a stolen resource situation. Most of the
>>> time, the XNWAKEN test will be false, or this would mean that the 
>>> application
>>> exhibits a high priority thread that routinely and frequently competes with 
>>> a
>>> low priority one for gaining access to such resource. I would rather fix the
>>> latter code first.
>> Besides that the lock-stealing path (with two instead of only one
>> conditional jumps) is relevant for the WCET in some cases (but that is
>> nitpicking), I was more referring to setting the bit + setting wwake in
>> the wakeup paths.
>>
> 
> Your next patch clears wwake upon return from xnpod_suspend_thread in
> xnsynch_sleep_on, which basically voids this micro-optimization.

So far my patch (the second version) only removes or moves code around,
it doesn't add anything. But maybe additional clearing in
xnpod_suspend_thread is required, then the picture would change slightly.

> 
>>> Regarding the perceived ugliness, I guess this is a matter of taste here. I 
>>> like
>>> the idea of always testing a given information the same way, like:
>>>
>>> if (test_bits(thread, foobar))
>>>
>>> and a

Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-20 Thread Philippe Gerum
Jan Kiszka wrote:
> Philippe Gerum wrote:
>> Jan Kiszka wrote:
>>> Philippe Gerum wrote:
 Jan Kiszka wrote:
> Philippe Gerum wrote:
>> Jan Kiszka wrote:
>>> Hi,
>>>
>>> bad news, everyone :(. According to the result of some lengthy debug
>>> session with a customer and several ad-hoc lttng instrumentations, we
>>> have a fatal bug in the nucleus' implementation of the lock stealing
>>> algorithm. Consider this scenario:
>>>
>>> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>>>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>>>cleared.
>>>
>>> 2. Thread A blocks on some further Mutex Y (in our case it was a
>>>semaphore, but that doesn't matter).
>>>
>>> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>>>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>>>its CPU.
>>>
>>> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
>>>also notices that the XNWAKEN flag of Thread A is set. Thus it steals
>>>the mutex although Thread A already entered the critical section -
>>>and hell breaks loose...
>>>
>> See commit #3795, and change log entry from 2008-05-15. Unless I 
>> misunderstood
>> your description, this bug was fixed in 2.4.4.
> Oh, fatally missed that fix.
>
> Anyway, the patch looks a bit unclean to me. Either you are lacking
> wwake = NULL in xnpod_suspend_thread, or the whole information encoded
> in XNWAKEN can already be covered by wwake directly.
>
 Clearing wwake has to be done when returning from xnsynch_sleep_on, only 
 when
 the code knows that ownership is eventually granted to the caller; making 
 such a
 decision in xnpod_suspend_thread() would be wrong.
>>> What about
>>>
>>> http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#1411
>>>
>>> then?
>>>
>> That portion of code applies _before_ the thread enters suspended state. We
>> bother for the other side, i.e. when it resumes from actual suspension, 
>> until it
>> has been decided whether it should be allowed to keep running, or redo the 
>> wait
>> due to the resource being stolen away.
> 
> Then clearing XNWAKEN here is useless - it comes for free, but it has no
> practical effect.

pri(A) < pri(B, C, D)

thread A: xnsynch_sleep_on(X)
thread B: xnsynch_wakeup_one_sleeper(X), A owns X, not running
thread C: xnpod_suspend_thread(A), A is forcibly suspended
thread D: xnsynch_sleep_on(X)

next, without clearance:
thread D: steals X, does not block

next, with clearance:
thread D: blocks

This does have a practical effect: a thread that is suspended has its state
fully frozen, which includes preserving all acquired ownerships.

Clearing the wwake field after xnsynch_sleep_on has returned from
xnpod_suspend_thread is no compensation for that initial clearance in
xnpod_suspend_thread, because the relevant code would be run by different 
threads.

 For code clarity reasons, this should be remove IMHO.
> 
 The awake bit has been kept mainly because the nucleus commonly uses 
 bitmasks to
 get fast access to thread status & information. It's not mandatory to have 
 this
 one in, it's just conforming to the rest of the implementation.
>>> I see, but redundancy come with some ugliness as well. And we add more
>>> code to hot paths.
>>>
>> The hot path barely involves facing a stolen resource situation. Most of the
>> time, the XNWAKEN test will be false, or this would mean that the application
>> exhibits a high priority thread that routinely and frequently competes with a
>> low priority one for gaining access to such resource. I would rather fix the
>> latter code first.
> 
> Besides that the lock-stealing path (with two instead of only one
> conditional jumps) is relevant for the WCET in some cases (but that is
> nitpicking), I was more referring to setting the bit + setting wwake in
> the wakeup paths.
>

Your next patch clears wwake upon return from xnpod_suspend_thread in
xnsynch_sleep_on, which basically voids this micro-optimization.

>> Regarding the perceived ugliness, I guess this is a matter of taste here. I 
>> like
>> the idea of always testing a given information the same way, like:
>>
>> if (test_bits(thread, foobar))
>>
>> and avoid things like:
>>
>> if (test_bits(thread, foo) || thread->field == bar)
> 
> The latter is what we see now with XNWAKEN

Not quite, what you see is test_bit(thread, foo) && thread->field == bar. In
that case, the second term that complements the information is not on the hot 
path.

 (while plain "thread->field
> == bar" would be possible in this case). We don't gain anything here by
> using a bit (no combined tests with other bits e.g.).
> 

Ok, I won't nak patches that help readability, but at the same time, it would be
much better to avoid being caught with our pants around our

Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Jan Kiszka
Philippe Gerum wrote:
> Jan Kiszka wrote:
>> Philippe Gerum wrote:
>>> Jan Kiszka wrote:
 Philippe Gerum wrote:
> Jan Kiszka wrote:
>> Hi,
>>
>> bad news, everyone :(. According to the result of some lengthy debug
>> session with a customer and several ad-hoc lttng instrumentations, we
>> have a fatal bug in the nucleus' implementation of the lock stealing
>> algorithm. Consider this scenario:
>>
>> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>>cleared.
>>
>> 2. Thread A blocks on some further Mutex Y (in our case it was a
>>semaphore, but that doesn't matter).
>>
>> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>>its CPU.
>>
>> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
>>also notices that the XNWAKEN flag of Thread A is set. Thus it steals
>>the mutex although Thread A already entered the critical section -
>>and hell breaks loose...
>>
> See commit #3795, and change log entry from 2008-05-15. Unless I 
> misunderstood
> your description, this bug was fixed in 2.4.4.
 Oh, fatally missed that fix.

 Anyway, the patch looks a bit unclean to me. Either you are lacking
 wwake = NULL in xnpod_suspend_thread, or the whole information encoded
 in XNWAKEN can already be covered by wwake directly.

>>> Clearing wwake has to be done when returning from xnsynch_sleep_on, only 
>>> when
>>> the code knows that ownership is eventually granted to the caller; making 
>>> such a
>>> decision in xnpod_suspend_thread() would be wrong.
>> What about
>>
>> http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#1411
>>
>> then?
>>
> 
> That portion of code applies _before_ the thread enters suspended state. We
> bother for the other side, i.e. when it resumes from actual suspension, until 
> it
> has been decided whether it should be allowed to keep running, or redo the 
> wait
> due to the resource being stolen away.

Then clearing XNWAKEN here is useless - it comes for free, but it has no
practical effect. For code clarity reasons, this should be remove IMHO.

> 
>>> The awake bit has been kept mainly because the nucleus commonly uses 
>>> bitmasks to
>>> get fast access to thread status & information. It's not mandatory to have 
>>> this
>>> one in, it's just conforming to the rest of the implementation.
>> I see, but redundancy come with some ugliness as well. And we add more
>> code to hot paths.
>>
> 
> The hot path barely involves facing a stolen resource situation. Most of the
> time, the XNWAKEN test will be false, or this would mean that the application
> exhibits a high priority thread that routinely and frequently competes with a
> low priority one for gaining access to such resource. I would rather fix the
> latter code first.

Besides that the lock-stealing path (with two instead of only one
conditional jumps) is relevant for the WCET in some cases (but that is
nitpicking), I was more referring to setting the bit + setting wwake in
the wakeup paths.

> 
> Regarding the perceived ugliness, I guess this is a matter of taste here. I 
> like
> the idea of always testing a given information the same way, like:
> 
> if (test_bits(thread, foobar))
> 
> and avoid things like:
> 
> if (test_bits(thread, foo) || thread->field == bar)

The latter is what we see now with XNWAKEN (while plain "thread->field
== bar" would be possible in this case). We don't gain anything here by
using a bit (no combined tests with other bits e.g.).

Jan

---
 include/nucleus/thread.h |1 -
 ksrc/nucleus/pod.c   |2 +-
 ksrc/nucleus/synch.c |5 +
 3 files changed, 2 insertions(+), 6 deletions(-)

Index: b/include/nucleus/thread.h
===
--- a/include/nucleus/thread.h
+++ b/include/nucleus/thread.h
@@ -112,7 +112,6 @@
 #define XNRMID0x0002 /**< Pending on a removed resource */
 #define XNBREAK   0x0004 /**< Forcibly awaken from a wait state */
 #define XNKICKED  0x0008 /**< Kicked upon Linux signal (shadow only) */
-#define XNWAKEN   0x0010 /**< Thread waken up upon resource availability */
 #define XNROBBED  0x0020 /**< Robbed from resource ownership */
 #define XNATOMIC  0x0040 /**< In atomic switch from secondary to primary 
mode */
 #define XNAFFSET  0x0080 /**< CPU affinity changed from primary mode */
Index: b/ksrc/nucleus/pod.c
===
--- a/ksrc/nucleus/pod.c
+++ b/ksrc/nucleus/pod.c
@@ -1406,7 +1406,7 @@ void xnpod_suspend_thread(xnthread_t *th
}
 #endif /* CONFIG_XENO_OPT_PERVASIVE */
 
-   xnthread_clear_info(thread, XNRMID | XNTIMEO | XNBREAK 

Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Philippe Gerum
Jan Kiszka wrote:
> Philippe Gerum wrote:
>> Jan Kiszka wrote:
>>> Philippe Gerum wrote:
 Jan Kiszka wrote:
> Hi,
>
> bad news, everyone :(. According to the result of some lengthy debug
> session with a customer and several ad-hoc lttng instrumentations, we
> have a fatal bug in the nucleus' implementation of the lock stealing
> algorithm. Consider this scenario:
>
> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>cleared.
>
> 2. Thread A blocks on some further Mutex Y (in our case it was a
>semaphore, but that doesn't matter).
>
> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>its CPU.
>
> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
>also notices that the XNWAKEN flag of Thread A is set. Thus it steals
>the mutex although Thread A already entered the critical section -
>and hell breaks loose...
>
 See commit #3795, and change log entry from 2008-05-15. Unless I 
 misunderstood
 your description, this bug was fixed in 2.4.4.
>>> Oh, fatally missed that fix.
>>>
>>> Anyway, the patch looks a bit unclean to me. Either you are lacking
>>> wwake = NULL in xnpod_suspend_thread, or the whole information encoded
>>> in XNWAKEN can already be covered by wwake directly.
>>>
>> Clearing wwake has to be done when returning from xnsynch_sleep_on, only when
>> the code knows that ownership is eventually granted to the caller; making 
>> such a
>> decision in xnpod_suspend_thread() would be wrong.
> 
> What about
> 
> http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#1411
> 
> then?
>

That portion of code applies _before_ the thread enters suspended state. We
bother for the other side, i.e. when it resumes from actual suspension, until it
has been decided whether it should be allowed to keep running, or redo the wait
due to the resource being stolen away.

>> The awake bit has been kept mainly because the nucleus commonly uses 
>> bitmasks to
>> get fast access to thread status & information. It's not mandatory to have 
>> this
>> one in, it's just conforming to the rest of the implementation.
> 
> I see, but redundancy come with some ugliness as well. And we add more
> code to hot paths.
> 

The hot path barely involves facing a stolen resource situation. Most of the
time, the XNWAKEN test will be false, or this would mean that the application
exhibits a high priority thread that routinely and frequently competes with a
low priority one for gaining access to such resource. I would rather fix the
latter code first.

Regarding the perceived ugliness, I guess this is a matter of taste here. I like
the idea of always testing a given information the same way, like:

if (test_bits(thread, foobar))

and avoid things like:

if (test_bits(thread, foo) || thread->field == bar)

> Jan
> 


-- 
Philippe.

___
Xenomai-core mailing list
Xenomai-core@gna.org
https://mail.gna.org/listinfo/xenomai-core


Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Jan Kiszka
Philippe Gerum wrote:
> Jan Kiszka wrote:
>> Philippe Gerum wrote:
>>> Jan Kiszka wrote:
 Hi,

 bad news, everyone :(. According to the result of some lengthy debug
 session with a customer and several ad-hoc lttng instrumentations, we
 have a fatal bug in the nucleus' implementation of the lock stealing
 algorithm. Consider this scenario:

 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
cleared.

 2. Thread A blocks on some further Mutex Y (in our case it was a
semaphore, but that doesn't matter).

 3. Thread B signals the availability of Mutex Y to Thread A, thus it
also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
its CPU.

 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
also notices that the XNWAKEN flag of Thread A is set. Thus it steals
the mutex although Thread A already entered the critical section -
and hell breaks loose...

>>> See commit #3795, and change log entry from 2008-05-15. Unless I 
>>> misunderstood
>>> your description, this bug was fixed in 2.4.4.
>> Oh, fatally missed that fix.
>>
>> Anyway, the patch looks a bit unclean to me. Either you are lacking
>> wwake = NULL in xnpod_suspend_thread, or the whole information encoded
>> in XNWAKEN can already be covered by wwake directly.
>>
> 
> Clearing wwake has to be done when returning from xnsynch_sleep_on, only when
> the code knows that ownership is eventually granted to the caller; making 
> such a
> decision in xnpod_suspend_thread() would be wrong.

What about

http://www.rts.uni-hannover.de/xenomai/lxr/source/ksrc/nucleus/pod.c#1411

then?

> 
> The awake bit has been kept mainly because the nucleus commonly uses bitmasks 
> to
> get fast access to thread status & information. It's not mandatory to have 
> this
> one in, it's just conforming to the rest of the implementation.

I see, but redundancy come with some ugliness as well. And we add more
code to hot paths.

Jan



signature.asc
Description: OpenPGP digital signature
___
Xenomai-core mailing list
Xenomai-core@gna.org
https://mail.gna.org/listinfo/xenomai-core


Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Philippe Gerum
Jan Kiszka wrote:
> Philippe Gerum wrote:
>> Jan Kiszka wrote:
>>> Hi,
>>>
>>> bad news, everyone :(. According to the result of some lengthy debug
>>> session with a customer and several ad-hoc lttng instrumentations, we
>>> have a fatal bug in the nucleus' implementation of the lock stealing
>>> algorithm. Consider this scenario:
>>>
>>> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>>>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>>>cleared.
>>>
>>> 2. Thread A blocks on some further Mutex Y (in our case it was a
>>>semaphore, but that doesn't matter).
>>>
>>> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>>>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>>>its CPU.
>>>
>>> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
>>>also notices that the XNWAKEN flag of Thread A is set. Thus it steals
>>>the mutex although Thread A already entered the critical section -
>>>and hell breaks loose...
>>>
>> See commit #3795, and change log entry from 2008-05-15. Unless I 
>> misunderstood
>> your description, this bug was fixed in 2.4.4.
> 
> Oh, fatally missed that fix.
> 
> Anyway, the patch looks a bit unclean to me. Either you are lacking
> wwake = NULL in xnpod_suspend_thread, or the whole information encoded
> in XNWAKEN can already be covered by wwake directly.
> 

Clearing wwake has to be done when returning from xnsynch_sleep_on, only when
the code knows that ownership is eventually granted to the caller; making such a
decision in xnpod_suspend_thread() would be wrong.

The awake bit has been kept mainly because the nucleus commonly uses bitmasks to
get fast access to thread status & information. It's not mandatory to have this
one in, it's just conforming to the rest of the implementation.

-- 
Philippe.

___
Xenomai-core mailing list
Xenomai-core@gna.org
https://mail.gna.org/listinfo/xenomai-core


Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Jan Kiszka
Philippe Gerum wrote:
> Jan Kiszka wrote:
>> Hi,
>>
>> bad news, everyone :(. According to the result of some lengthy debug
>> session with a customer and several ad-hoc lttng instrumentations, we
>> have a fatal bug in the nucleus' implementation of the lock stealing
>> algorithm. Consider this scenario:
>>
>> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>>cleared.
>>
>> 2. Thread A blocks on some further Mutex Y (in our case it was a
>>semaphore, but that doesn't matter).
>>
>> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>>its CPU.
>>
>> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
>>also notices that the XNWAKEN flag of Thread A is set. Thus it steals
>>the mutex although Thread A already entered the critical section -
>>and hell breaks loose...
>>
> 
> See commit #3795, and change log entry from 2008-05-15. Unless I misunderstood
> your description, this bug was fixed in 2.4.4.

Oh, fatally missed that fix.

Anyway, the patch looks a bit unclean to me. Either you are lacking
wwake = NULL in xnpod_suspend_thread, or the whole information encoded
in XNWAKEN can already be covered by wwake directly.

Jan



signature.asc
Description: OpenPGP digital signature
___
Xenomai-core mailing list
Xenomai-core@gna.org
https://mail.gna.org/listinfo/xenomai-core


Re: [Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Philippe Gerum
Jan Kiszka wrote:
> Hi,
> 
> bad news, everyone :(. According to the result of some lengthy debug
> session with a customer and several ad-hoc lttng instrumentations, we
> have a fatal bug in the nucleus' implementation of the lock stealing
> algorithm. Consider this scenario:
> 
> 1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
>case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
>cleared.
> 
> 2. Thread A blocks on some further Mutex Y (in our case it was a
>semaphore, but that doesn't matter).
> 
> 3. Thread B signals the availability of Mutex Y to Thread A, thus it
>also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
>its CPU.
> 
> 4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
>also notices that the XNWAKEN flag of Thread A is set. Thus it steals
>the mutex although Thread A already entered the critical section -
>and hell breaks loose...
>

See commit #3795, and change log entry from 2008-05-15. Unless I misunderstood
your description, this bug was fixed in 2.4.4.

> Looks like the XNWAKEN flag is misplaced in the owner's thread flags.
> Can we safely move it into the synch object?
> 
> Jan
> 


-- 
Philippe.

___
Xenomai-core mailing list
Xenomai-core@gna.org
https://mail.gna.org/listinfo/xenomai-core


[Xenomai-core] [BUG] Lock stealing is borken

2008-08-19 Thread Jan Kiszka
Hi,

bad news, everyone :(. According to the result of some lengthy debug
session with a customer and several ad-hoc lttng instrumentations, we
have a fatal bug in the nucleus' implementation of the lock stealing
algorithm. Consider this scenario:

1. Thread A acquires Mutex X successfully, ie. it leaves the (in this
   case) rt_mutex_acquire service, and its XNWAKEN flag is therefore
   cleared.

2. Thread A blocks on some further Mutex Y (in our case it was a
   semaphore, but that doesn't matter).

3. Thread B signals the availability of Mutex Y to Thread A, thus it
   also set XNWAKEN in Thread A. But Thread A is not yet scheduled on
   its CPU.

4. Thread C tries to acquire Mutex X, finds it assigned to Thread A, but
   also notices that the XNWAKEN flag of Thread A is set. Thus it steals
   the mutex although Thread A already entered the critical section -
   and hell breaks loose...

Looks like the XNWAKEN flag is misplaced in the owner's thread flags.
Can we safely move it into the synch object?

Jan

-- 
Siemens AG, Corporate Technology, CT SE 2
Corporate Competence Center Embedded Linux

___
Xenomai-core mailing list
Xenomai-core@gna.org
https://mail.gna.org/listinfo/xenomai-core