Exclusive mode seems to work without deadlocks
[mirrors/Programs.git] / c / pthread_extra / pthread_pause.c
CommitLineData
88342701
TM
1#define __PTHREAD_EXTRA_INTERNAL
2
a8e71e8f
TM
3#include <pthread.h>
4#include <pthread_extra.h>
5#include <signal.h>
3109d0d1 6#include <semaphore.h>
88342701
TM
7#include <errno.h>
8#include <unistd.h>
9#include <sys/resource.h>
dec91d37 10//#include <sys/siginfo.h>
88342701 11//#include <stdio.h>
7e0f3dba
TM
12#include <stdlib.h>
13#include <assert.h>
88342701 14//#include <sys/time.h>
a8e71e8f 15
3109d0d1
TM
16//Mutex that ensures proper serialization of (un)pause calls
17//pthread_mutex_t pthread_pause_mutex = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
18
19//Semaphore that ensures proper serialization of (un)pause signals
20sem_t pthread_pause_sem;
21//Once control to init the semaphore (and possibly other stuff)
22pthread_once_t pthread_pause_once_ctrl = PTHREAD_ONCE_INIT;
23void pthread_pause_once(void) {
24 sem_init(&pthread_pause_sem, 0, 1);
25}
26void pthread_pause_init() { pthread_once(&pthread_pause_once_ctrl, &pthread_pause_once); }
27
70bd1c94 28///When this variable is nonzero, only referenced thread is allowed to run
3109d0d1 29///Access has to be protected by pthread_user_data_lock() and pthread_pause_sem;
9b4be8e8 30pthread_t pthread_pause_holder = PTHREAD_XNULL;
70bd1c94 31
dec91d37
TM
32void pthread_pause_handler(const int signal, siginfo_t *info, void *ptr) {
33 (void)signal; (void)info; (void)ptr;
70bd1c94
TM
34 int run = info->si_value.sival_int;
35 //(void)td;
dec91d37 36
3109d0d1
TM
37 //Post semaphore to confirm that signal is handled
38 sem_post(&pthread_pause_sem);
88342701
TM
39
40 //Keep waiting for signals until we are supposed to be running
70bd1c94 41 if(!run) {
3109d0d1
TM
42 sigset_t sigset;
43 sigfillset(&sigset);
44 sigdelset(&sigset, PTHREAD_XSIG_STOP);
88342701
TM
45 sigsuspend(&sigset);
46 }
a8e71e8f
TM
47}
48
49void pthread_pause_enable() {
de59b17e
TM
50 pthread_pause_init(); //Make sure semaphore is init'd
51
ee099ba7 52 //Add thread to internal registry
de59b17e 53 pthread_user_data_internal(pthread_self());
ee099ba7 54
88342701
TM
55 //Nesting signals too deep is not good for stack
56 //You can get runtime stats using following command:
57 //grep -i sig /proc/$(pgrep binary)/status
3109d0d1
TM
58 //struct rlimit sigq = {.rlim_cur = 32, .rlim_max=32};
59 //setrlimit(RLIMIT_SIGPENDING, &sigq);
60
dec91d37 61 //Prepare signal mask
88342701
TM
62 sigset_t sigset;
63 sigemptyset(&sigset);
64 sigaddset(&sigset, PTHREAD_XSIG_STOP);
dec91d37
TM
65
66 //Setup signal handler
67 //signal(PTHREAD_XSIG_STOP, pthread_pause_handler);
68 const struct sigaction pause_sa = {
69 .sa_sigaction = pthread_pause_handler,
70 .sa_mask = sigset,
80c01dc9 71 .sa_flags = SA_SIGINFO | SA_RESTART,
dec91d37
TM
72 .sa_restorer = NULL
73 };
74 sigaction(PTHREAD_XSIG_STOP, &pause_sa, NULL);
75
76 //Unblock signal
88342701
TM
77 pthread_sigmask(SIG_UNBLOCK, &sigset, NULL);
78}
79
80void pthread_pause_disable() {
3109d0d1
TM
81 pthread_pause_init(); //Make sure semaphore is init'd
82
de59b17e
TM
83 //Add thread to internal registry
84 pthread_user_data_internal(pthread_self());
85
88342701
TM
86 //Block signal
87 sigset_t sigset;
88 sigemptyset(&sigset);
89 sigaddset(&sigset, PTHREAD_XSIG_STOP);
3109d0d1
TM
90
91 //Make sure all signals are dispatched before we block them
92 sem_wait(&pthread_pause_sem);
88342701 93 pthread_sigmask(SIG_BLOCK, &sigset, NULL);
3109d0d1 94 sem_post(&pthread_pause_sem);
88342701
TM
95}
96
70bd1c94 97/*
7e0f3dba
TM
98int pthread_pause_reschedule(pthread_t thread) {
99 //Send signal to initiate pause handler
dec91d37 100 //printf("SND: %p\n", (void *)pthread_user_data_internal(thread));
86166123 101 //while(pthread_kill(thread, PTHREAD_XSIG_STOP) == EAGAIN) usleep(1000);
dec91d37
TM
102 while(pthread_sigqueue(thread, PTHREAD_XSIG_STOP,
103 (const union sigval){.sival_ptr=pthread_user_data_internal(thread)}
104 ) == EAGAIN) usleep(1000);
7e0f3dba
TM
105 return 0;
106}
70bd1c94
TM
107*/
108
109int pthread_pause_reschedule(pthread_t thread) {
3109d0d1
TM
110 //Decide if the thread should run and signal it
111
de59b17e
TM
112 pthread_user_data_lock();
113
3109d0d1
TM
114 //Wait for semaphore which means signal queue is empty
115 pthread_pause_init(); //Make sure semaphore is init'd
116 sem_wait(&pthread_pause_sem);
117
118 //Only call this if you already acquired pthread_pause_sem semaphore!!!!
119 //Otherwise call pthread_pause_reschedule()
70bd1c94 120
70bd1c94
TM
121 //Check if thread has running flag
122 int run = (pthread_user_data_internal(thread)->running);
123 //Check if privileged (single thread) mode is active
de59b17e 124 if(!pthread_equal(pthread_pause_holder, PTHREAD_XNULL) && !pthread_equal(pthread_pause_holder, thread)) {
70bd1c94
TM
125 run = 0;
126 }
70bd1c94
TM
127
128 //Send signal to initiate pause handler (keep trying while SigQueue is full)
129 //while(pthread_kill(thread, PTHREAD_XSIG_STOP) == EAGAIN) usleep(1000);
de59b17e 130 //printf("Sched %lu = %d (self: %lu, lck: %lu)\n", thread, run, pthread_self(), pthread_pause_holder);
70bd1c94
TM
131 while(pthread_sigqueue(thread, PTHREAD_XSIG_STOP,
132 (const union sigval){.sival_int=run}
133 ) == EAGAIN) usleep(1000);
3109d0d1
TM
134
135 //Wait for signal to be delivered
136 sem_wait(&pthread_pause_sem);
137 sem_post(&pthread_pause_sem);
de59b17e 138 pthread_user_data_unlock();
3109d0d1 139
70bd1c94
TM
140 return 0;
141}
7e0f3dba 142
8df6da88
TM
143int pthread_extra_yield() {
144 //Yield to both schedulers
145 pthread_pause_reschedule(pthread_self());
146 return pthread_yield();
147}
148
88342701
TM
149int pthread_pause(pthread_t thread) {
150 //Set thread as paused and notify it via signal (wait when queue full)
70bd1c94 151 pthread_user_data_lock();
88342701 152 pthread_user_data_internal(thread)->running = 0;
7e0f3dba 153 pthread_pause_reschedule(thread);
3109d0d1 154 pthread_user_data_unlock();
88342701
TM
155 return 0;
156}
157
158int pthread_unpause(pthread_t thread) {
159 //Set thread as running and notify it via signal (wait when queue full)
70bd1c94 160 pthread_user_data_lock();
88342701 161 pthread_user_data_internal(thread)->running = 1;
7e0f3dba 162 pthread_pause_reschedule(thread);
3109d0d1 163 pthread_user_data_unlock();
88342701 164 return 0;
a8e71e8f 165}
7e0f3dba 166
de59b17e 167///Enter exclusive mode by pausing everyone else
70bd1c94 168int pthread_pause_all() {
de59b17e 169 //printf("Pause ALL\n");
70bd1c94 170 pthread_user_data_lock();
de59b17e
TM
171 //printf("Pause ALL+\n");
172 //printf("Pause %p == %p\n", (void *)pthread_pause_holder, (void *)pthread_self());
173 if(!pthread_equal(pthread_pause_holder,PTHREAD_XNULL)) assert(pthread_equal(pthread_pause_holder, pthread_self()));
70bd1c94 174 pthread_pause_holder = pthread_self();
9b4be8e8 175 pthread_user_data_internal_iterate(&pthread_pause_reschedule, NULL);
de59b17e 176 //printf("Pause ALL!\n");
3109d0d1 177 pthread_user_data_unlock();
70bd1c94
TM
178 return 0;
179}
180
de59b17e 181///Leave exclusive mode by unpausing everyone else
70bd1c94 182int pthread_unpause_all() {
de59b17e 183 //printf("UnPause ALL\n");
70bd1c94 184 pthread_user_data_lock();
de59b17e
TM
185 //printf("UnPause ALL+\n");
186 if(!pthread_equal(pthread_pause_holder,PTHREAD_XNULL)) assert(pthread_equal(pthread_pause_holder, pthread_self()));
9b4be8e8 187 pthread_pause_holder = PTHREAD_XNULL;
9b4be8e8 188 pthread_user_data_internal_iterate(&pthread_pause_reschedule, NULL);
de59b17e 189 //printf("UnPause ALL!\n");
3109d0d1 190 pthread_user_data_unlock();
70bd1c94
TM
191 return 0;
192}
7e0f3dba
TM
193
194
195// Wrappers ///////////////////////////////////////////////////////////
196
197
198typedef struct pthread_extra_wrapper_t {
199 void *(*start_routine)(void *);
200 void *restrict arg;
201} pthread_extra_wrapper_t;
202
203void *pthread_extra_thread_wrapper(void *arg) {
204 pthread_extra_wrapper_t task = *((pthread_extra_wrapper_t*)arg);
205 free(arg);
206
207 //Register new thread to user data structure
de59b17e 208 pthread_user_data_internal(pthread_self()); //Perhaps already done in pthread_extra_yield()??
7e0f3dba
TM
209
210 //TODO: user_data should do this automaticaly?
211 pthread_cleanup_push(pthread_user_data_cleanup, (void *)pthread_self());
212
213 //Check if we should be running according to pthread_pause sub-scheduler
70bd1c94
TM
214 //pthread_pause_reschedule(pthread_self());
215 pthread_extra_yield();
7e0f3dba 216
70bd1c94 217 //Run actual task
7e0f3dba
TM
218 return task.start_routine(task.arg);
219
220 pthread_cleanup_pop(1); //Needed by pthread_cleanup_push() macro
221}
222
223int pthread_extra_create(pthread_t *restrict thread,
224 const pthread_attr_t *restrict attr,
225 void *(*start_routine)(void *),
226 void *restrict arg) {
227
228 pthread_extra_wrapper_t *task = malloc(sizeof(pthread_extra_wrapper_t));
229 assert(task != NULL);
230 task->start_routine=start_routine;
231 task->arg=arg;
232 return pthread_create(thread, attr, pthread_extra_thread_wrapper, task);
233}
This page took 0.444759 seconds and 4 git commands to generate.