1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
/*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2025 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU Lesser General Public License, as published by the Free Software
* Foundation; either version 2.1 of the License, or (at your option) any
* later version. Please see the file LICENSE-LGPL for details.
*
* Web Page: http://brltty.app/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#include "prologue.h"
#include <string.h>
#include <errno.h>
#include "log.h"
#include "strfmt.h"
#include "thread.h"
#include "async_signal.h"
#include "async_event.h"
#include "async_wait.h"
#undef HAVE_THREAD_NAMES
#ifdef GOT_PTHREADS
typedef struct {
ThreadFunction *function;
void *argument;
char name[];
} RunThreadArgument;
static void *
runThread (void *argument) {
RunThreadArgument *run = argument;
setThreadName(run->name);
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "thread starting: %s", run->name);
void *result = run->function(run->argument);
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "thread finished: %s", run->name);
free(run);
return result;
}
typedef struct {
const char *const name;
pthread_t *const thread;
const pthread_attr_t *const attributes;
ThreadFunction *const function;
void *const argument;
int error;
} CreateThreadParameters;
static int
createActualThread (void *parameters) {
CreateThreadParameters *create = parameters;
RunThreadArgument *run;
if ((run = malloc(sizeof(*run) + strlen(create->name) + 1))) {
memset(run, 0, sizeof(*run));
run->function = create->function;
run->argument = create->argument;
strcpy(run->name, create->name);
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "creating thread: %s", create->name);
create->error = pthread_create(create->thread, create->attributes, runThread, run);
if (!create->error) return 1;
logMessage(LOG_CATEGORY(ASYNC_EVENTS), "thread not created: %s: %s", create->name, strerror(create->error));
free(run);
} else {
create->error = errno;
logMallocError();
}
return 0;
}
#ifdef ASYNC_CAN_BLOCK_SIGNALS
ASYNC_WITH_SIGNALS_BLOCKED_FUNCTION(createSignalSafeThread) {
static const int signals[] = {
#ifdef SIGINT
SIGINT,
#endif /* SIGINT */
#ifdef SIGTERM
SIGTERM,
#endif /* SIGTERM */
#ifdef SIGCHLD
SIGCHLD,
#endif /* SIGCHLD */
0
};
CreateThreadParameters *create = data;
const int *signal = signals;
while (*signal) {
asyncSetSignalBlocked(*signal, 1);
signal += 1;
}
createActualThread(create);
}
#endif /* ASYNC_CAN_BLOCK_SIGNALS */
int
createThread (
const char *name,
pthread_t *thread, const pthread_attr_t *attributes,
ThreadFunction *function, void *argument
) {
CreateThreadParameters create = {
.name = name,
.thread = thread,
.attributes = attributes,
.function = function,
.argument = argument
};
#ifdef ASYNC_CAN_BLOCK_SIGNALS
asyncWithObtainableSignalsBlocked(createSignalSafeThread, &create);
#else /* ASYNC_CAN_BLOCK_SIGNALS */
createActualThread(&create);
#endif /* ASYNC_CAN_BLOCK_SIGNALS */
return create.error;
}
typedef struct {
ThreadFunction *const function;
void *const argument;
AsyncEvent *event;
unsigned returned:1;
} CallThreadFunctionData;
THREAD_FUNCTION(runThreadFunction) {
CallThreadFunctionData *ctf = argument;
void *result = ctf->function? ctf->function(ctf->argument): NULL;
asyncSignalEvent(ctf->event, NULL);
return result;
}
ASYNC_EVENT_CALLBACK(handleThreadFunctionReturned) {
CallThreadFunctionData *ctf = parameters->eventData;
ctf->returned = 1;
}
ASYNC_CONDITION_TESTER(testThreadFunctionReturned) {
CallThreadFunctionData *ctf = data;
return ctf->returned;
}
int
callThreadFunction (
const char *name, ThreadFunction *function,
void *argument, void **result
) {
int called = 0;
CallThreadFunctionData ctf = {
.function = function,
.argument = argument,
.returned = 0
};
if ((ctf.event = asyncNewEvent(handleThreadFunctionReturned, &ctf))) {
pthread_t thread;
int error = createThread(name, &thread, NULL, runThreadFunction, &ctf);
if (!error) {
asyncWaitFor(testThreadFunctionReturned, &ctf);
{
void *r;
if (!result) result = &r;
pthread_join(thread, result);
}
called = 1;
} else {
errno = error;
}
asyncDiscardEvent(ctf.event);
}
return called;
}
int
lockMutex (pthread_mutex_t *mutex) {
int result = pthread_mutex_lock(mutex);
logSymbol(LOG_CATEGORY(ASYNC_EVENTS), mutex, "mutex lock");
return result;
}
int
unlockMutex (pthread_mutex_t *mutex) {
logSymbol(LOG_CATEGORY(ASYNC_EVENTS), mutex, "mutex unlock");
return pthread_mutex_unlock(mutex);
}
#if defined(HAVE_PTHREAD_GETNAME_NP) && defined(__GLIBC__)
#define HAVE_THREAD_NAMES
size_t
formatThreadName (char *buffer, size_t size) {
int error = pthread_getname_np(pthread_self(), buffer, size);
return error? 0: strlen(buffer);
}
void
setThreadName (const char *name) {
pthread_setname_np(pthread_self(), name);
}
#elif defined(HAVE_PTHREAD_GETNAME_NP) && defined(__APPLE__)
#define HAVE_THREAD_NAMES
size_t
formatThreadName (char *buffer, size_t size) {
{
int error = pthread_getname_np(pthread_self(), buffer, size);
if (error) return 0;
if (*buffer) return strlen(buffer);
}
if (pthread_main_np()) {
size_t length;
STR_BEGIN(buffer, size);
STR_PRINTF("main");
length = STR_LENGTH;
STR_END;
return length;
}
return 0;
}
void
setThreadName (const char *name) {
pthread_setname_np(name);
}
#endif /* thread names */
#endif /* GOT_PTHREADS */
#ifndef HAVE_THREAD_NAMES
size_t
formatThreadName (char *buffer, size_t size) {
return 0;
}
void
setThreadName (const char *name) {
}
#endif /* HAVE_THREAD_NAMES */
#if defined(PTHREAD_MUTEX_INITIALIZER)
static void
createThreadSpecificDataKey (ThreadSpecificDataControl *ctl) {
int error;
pthread_mutex_lock(&ctl->mutex);
if (!ctl->key.created) {
error = pthread_key_create(&ctl->key.value, ctl->destroy);
if (!error) {
ctl->key.created = 1;
} else {
logActionError(error, "pthread_key_create");
}
}
pthread_mutex_unlock(&ctl->mutex);
}
#ifdef ASYNC_CAN_BLOCK_SIGNALS
ASYNC_WITH_SIGNALS_BLOCKED_FUNCTION(createThreadSpecificDataKeyWithSignalsBlocked) {
ThreadSpecificDataControl *ctl = data;
createThreadSpecificDataKey(ctl);
}
#endif /* ASYNC_CAN_BLOCK_SIGNALS */
void *
getThreadSpecificData (ThreadSpecificDataControl *ctl) {
int error;
#ifdef ASYNC_CAN_BLOCK_SIGNALS
asyncWithAllSignalsBlocked(createThreadSpecificDataKeyWithSignalsBlocked, ctl);
#else /* ASYNC_CAN_BLOCK_SIGNALS */
createThreadSpecificDataKey(ctl);
#endif /* ASYNC_CAN_BLOCK_SIGNALS */
if (ctl->key.created) {
void *tsd = pthread_getspecific(ctl->key.value);
if (tsd) return tsd;
if ((tsd = ctl->new())) {
if (!(error = pthread_setspecific(ctl->key.value, tsd))) {
return tsd;
} else {
logActionError(error, "pthread_setspecific");
}
ctl->destroy(tsd);
}
}
return NULL;
}
#else /* thread specific data */
#include "program.h"
static void
exitThreadSpecificData (void *data) {
ThreadSpecificDataControl *ctl = data;
if (ctl->data) {
ctl->destroy(ctl->data);
ctl->data = NULL;
}
}
void *
getThreadSpecificData (ThreadSpecificDataControl *ctl) {
if (!ctl->data) {
if ((ctl->data = ctl->new())) {
onProgramExit("thread-specific-data", exitThreadSpecificData, ctl);
}
}
return ctl->data;
}
#endif /* thread specific data */
|