问题
TL;DR
On multiprocessors/multicores engines, more than one RT SCHED_FIFO threads may be scheduled on more than one execution unit. So thread with priority 60 and thread with priority 40 may run simultaneously on 2 different cores.
This may be counter-intuitive, especially when simulating embedded systems that (often as today) run on single core processors and rely on strict priority execution.
See my other answer in this post for summary
Original problem description
I have difficulties even with very simple code to make Linux respect the priority of my threads with scheduling policy SCHED_FIFO.
- See MCVE at the end of the question.
- See modified MCVE in answer
This situation comes from the need to simulate an embedded code under a Linux PC in order to perform integration tests
The main
thread with fifo priority 10
will launch the thread divisor
and ratio
.
divisor
thread should get priority 2
so that the ratio
thread with priority 1
will not evaluate a/b before b gets a decent value ( this is a completely hypothetical scenario only for the MCVE, not a real life case with semaphores or condition variables ).
Potential Prerequiste: You need to be root or BETTER to setcap the program so that to can change the scheduling policy and priority
sudo setcap cap_sys_nice+ep main
johndoe@VirtualBox:~/Code/gdb_sched_fifo$ getcap main
main = cap_sys_nice+ep
First experiments were done under Virtualbox environment with 2 vCPUs(gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0, GNU gdb (Ubuntu 8.1-0ubuntu3.2) 8.1.0.20180409-git) were code behaviour was almost
OK
under normal execution butNOK
under GDB.Other experiments on Native Ubuntu 20.04 show very frequent
NOK
behaviours even in normal execution with I3-1005 2C/4T (gcc (Ubuntu 9.3.0-10ubuntu2) 9.3.0, GNU gdb (Ubuntu 9.1-0ubuntu1) 9.1 )
Compile basically:
johndoe@VirtualBox:~/Code/gdb_sched_fifo$ g++ main.cc -o main -pthread
Normal execution sometimes OK sometimes not if no root or no setcap
johndoe@VirtualBox:~/Code/gdb_sched_fifo$ ./main
Problem with setschedparam: Operation not permitted(1) <<-- err msg if no root or setcap
Result: 0.333333 or Result: Inf <<-- 1/3 or div by 0
Normal execution OK (e.g with setcap )
johndoe@VirtualBox:~/Code/gdb_sched_fifo$ ./main
Result: 0.333333
Now if you want to debug this program you get again an the error message.
(gdb) run
Starting program: /home/johndoe/Code/gdb_sched_fifo/main
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7f929a6a9700 (LWP 2633)]
Problem with setschedparam: Operation not permitted(1) <<--- ERROR MSG
Result: inf <<--- DIV BY 0
[New Thread 0x7f9299ea8700 (LWP 2634)]
[Thread 0x7f929a6a9700 (LWP 2633) exited]
[Thread 0x7f9299ea8700 (LWP 2634) exited]
[Inferior 1 (process 2629) exited normally]
This is explained in this question gdb appears to ignore executable capabilities ( allmost all answers may be relevant ).
So in my case I did
sudo setcap cap_sys_nice+ep /usr/bin/gdb
- create a ~/.gdbinit with
set startup-with-shell off
And as a result I got:
(gdb) run
Starting program: /home/johndoe/Code/gdb_sched_fifo/main
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7ffff6e85700 (LWP 2691)]
Result: inf <<-- NO ERR MSG but DIV BY 0
[New Thread 0x7ffff6684700 (LWP 2692)]
[Thread 0x7ffff6e85700 (LWP 2691) exited]
[Thread 0x7ffff6684700 (LWP 2692) exited]
[Inferior 1 (process 2687) exited normally]
(gdb)
So conclusion and question
- I thought the only problem came from GDB
- Testing on another (non-virtual) target showed even worse results under normal execution
I saw other questions related to RT SCHED_FIFO not respected but I find that the answers have no or unclear conclusions. My MCVE is also much smaller with fewer potential side-effects
Linux SCHED_FIFO not respecting thread priorities
SCHED_FIFO higher priority thread is getting preempted by the SCHED_FIFO lower priority thread?
Comments brought some pieces of answer but I am still not convinced ... ( ... it should work like this )
The MCVE:
#include <iostream>
#include <thread>
#include <cstring>
double a = 1.0F;
double b = 0.0F;
void ratio(void)
{
struct sched_param param;
param.sched_priority = 1;
int ret = pthread_setschedparam(pthread_self(),SCHED_FIFO,¶m);
if ( 0 != ret )
std::cout << "Problem with setschedparam: " << std::strerror(errno) << '(' << errno << ')' << "\n" << std::flush;
std::cout << "Result: " << a/b << "\n" << std::flush;
}
void divisor(void)
{
struct sched_param param;
param.sched_priority = 2;
pthread_setschedparam(pthread_self(),SCHED_FIFO,¶m);
b = 3.0F;
std::this_thread::sleep_for(std::chrono::milliseconds(2000u));
}
int main(int argc, char * argv[])
{
struct sched_param param;
param.sched_priority = 10;
pthread_setschedparam(pthread_self(),SCHED_FIFO,¶m);
std::thread thr_ratio(ratio);
std::thread thr_divisor(divisor);
thr_ratio.join();
thr_divisor.join();
return 0;
}
回答1:
There are a few things obviously wrong with your MCVE:
You have a data race on
b
, i.e. undefined behavior, so anything can happen.You are expecting that the
divisor
thread will have finishedpthread_setschedparam
call before theratio
thread gets to computing the ratio.But there is absolutely no guarantee that the first thread will not run to completion long before the second thread is even created.
Indeed that is what's likely happening under GDB: it must trap thread creation and destruction events in order to keep track of all the threads, and so thread creation under GDB is significantly slower than outside of it.
To fix the second problem, add a counting semaphore, and have both threads randevu after each executed the pthread_setschedparam
call.
回答2:
I tried many solutions but never got 'No defect' code. See also my other answer in this post
The code with the best rate,but not perfect is the one below with the traditionnal pthread C language that allow to create the thread with the right attributes right from the start.
I am still astonished to see that I still get error even with this code (same as Question MCVE but with pure pthread... API ).
In order to stress the code I found the following sequence
$ seq 1000 | parallel ./main | grep inf
Result: inf
Result: inf
....
inf
denoting the wrong division by 0 result. Defect is in my case around 10/1000.
Command like for i in {1..1000}; do ./main ; done | grep inf
are longer
Threads are launched from higher priority to lower priority
So now the divisor thread
- is created first
- with higher RT priority (2 > 1 > main stay with SCHED_OTHER non RT scheduling).
So I wonder why I still get division by 0 ...
At last I tried to reduce the taskset. It runs OK when
$ taskset -pc 0 $$
pid 2414's current affinity list: 0,1
pid 2414's new affinity list: 0
$ for i in {1..1000}; do ./main_oss ; done <<-- no need for parallel in this case
Result: 0.333333
Result: 0.333333
Result: 0.333333
Result: 0.333333
Result: 0.333333
...
but once there are more than 1 CPU the defect comes back
$ taskset -pc 0,1 $$
pid 2414's current affinity list: 0
pid 2414's new affinity list: 0,1
$ seq 1000 | parallel ./main_oss
Result: 0.333333 | <<-- display by group of 2
Result: 0.333333 |
Result: inf | <<--
Result: 0.333333 |
...
Why do we run lower priority RT SCHED_FIFO thread on another CPU when the thread belongs to the same parent process = ?
Unfortunately PTHREAD_SCOPE_PROCESS is not supported on Linux
#include <iostream>
#include <thread>
#include <cstring>
#include <pthread.h>
double a = 1.0F;
double b = 0.0F;
void * ratio(void*)
{
std::cout << "Result: " << a/b << "\n" << std::flush;
return nullptr;
}
void * divisor(void*)
{
b = 3.0F;
std::this_thread::sleep_for(std::chrono::milliseconds(500u));
return nullptr;
}
int main(int agrc, char * argv[])
{
struct sched_param param;
pthread_t thr[2];
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setschedpolicy(&attr,SCHED_FIFO);
pthread_attr_setinheritsched(&attr,PTHREAD_EXPLICIT_SCHED);
param.sched_priority = 2;
pthread_attr_setschedparam(&attr,¶m);
pthread_create(&thr[0],&attr,divisor,nullptr);
param.sched_priority = 1;
pthread_attr_setschedparam(&attr,¶m);
pthread_create(&thr[1],&attr,ratio,nullptr);
pthread_join(thr[0],nullptr);
pthread_join(thr[1],nullptr);
return 0;
}
回答3:
A new answer to gather the remaining problems I had for Debugging.
Answers like Setting application affinity in gdb / Markus Ahlberg or questions like gdb don't break when I use exec-wrapper script to exec my target binary gave a solution with the use of the GDB option exec-wrapper but then I was not (always) able to set breakpoints in my code (even trying my own wrapper)
I finally came back to this solution again Setting application affinity in gdb / Craig Scratchley
The initial problem
$ ./main
Result: inf
The solution for run-time
taskset -c 0 ./main
Result: 0.333333
But for debug
gdb -ex 'set exec-wrapper taskset -c 0' ./main
--> mixed result depending on conditions (native/virtualized ? Number of cores ? )
sometimes 0.333333 sometimes inf
--> problem to set breakpoints
--> still work to do for me to summarize this issue
or
taskset -c 0 gdb main
...
(gdb) r
...
Result: inf
and finally
taskset -c N chrt 99 gdb main <<-- where N is a core number (*)
... <<-- 99 denotes here "your higher prio in your system"
(gdb) r
...
Result: 0.333333
- I wrote N above because if your program main sets it's affinity to processor M and you set gdb affinity to N, you may get trouble the same original problem
- I wrote only chrt 99 for GDB even if I am interested in SCHED_FIFO and not SCHED_RR because I experienced gdb ( or IDE see below ) freezes if option -f ( for fifo ) was used. I suspect the roud robin mechanism is safer as a thread will always release at some point
And if you have an IDE (but do not know how to set gdb properly inside this IDE) I was able to do
taskset -c N chrt 99 code
来源:https://stackoverflow.com/questions/64061391/linux-not-respecting-sched-fifo-priority-normal-or-gdb-execution