2015-02-17 13:30:22 +00:00
|
|
|
/*
|
2016-05-17 18:24:46 +00:00
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-02-17 13:30:22 +00:00
|
|
|
*
|
2016-05-17 18:24:46 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2015-02-17 13:30:22 +00:00
|
|
|
*/
|
|
|
|
|
2015-11-22 01:14:43 +00:00
|
|
|
/* This must be the first #include file */
|
2019-09-27 21:58:06 +00:00
|
|
|
#include "../async_local.h"
|
2015-02-17 13:30:22 +00:00
|
|
|
|
2015-10-06 10:25:16 +00:00
|
|
|
#ifdef ASYNC_POSIX
|
2015-11-22 01:14:43 +00:00
|
|
|
|
2015-02-17 13:30:22 +00:00
|
|
|
# include <stddef.h>
|
2015-07-24 07:15:31 +00:00
|
|
|
# include <unistd.h>
|
2015-02-17 13:30:22 +00:00
|
|
|
|
2015-03-25 16:08:44 +00:00
|
|
|
#define STACKSIZE 32768
|
|
|
|
|
2016-03-07 16:55:39 +00:00
|
|
|
int ASYNC_is_capable(void)
|
2015-11-19 21:44:13 +00:00
|
|
|
{
|
2016-03-16 10:38:39 +00:00
|
|
|
ucontext_t ctx;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some platforms provide getcontext() but it does not work (notably
|
|
|
|
* MacOSX PPC64). Check for a working getcontext();
|
|
|
|
*/
|
|
|
|
return getcontext(&ctx) == 0;
|
2015-11-19 21:44:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 16:55:39 +00:00
|
|
|
void async_local_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
2015-11-19 21:44:13 +00:00
|
|
|
|
2015-11-22 01:14:43 +00:00
|
|
|
int async_fibre_makecontext(async_fibre *fibre)
|
2015-02-17 13:30:22 +00:00
|
|
|
{
|
2015-05-05 14:08:39 +00:00
|
|
|
fibre->env_init = 0;
|
2015-11-22 01:14:43 +00:00
|
|
|
if (getcontext(&fibre->fibre) == 0) {
|
|
|
|
fibre->fibre.uc_stack.ss_sp = OPENSSL_malloc(STACKSIZE);
|
|
|
|
if (fibre->fibre.uc_stack.ss_sp != NULL) {
|
|
|
|
fibre->fibre.uc_stack.ss_size = STACKSIZE;
|
|
|
|
fibre->fibre.uc_link = NULL;
|
|
|
|
makecontext(&fibre->fibre, async_start_func, 0);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fibre->fibre.uc_stack.ss_sp = NULL;
|
|
|
|
}
|
|
|
|
return 0;
|
2015-02-17 13:30:22 +00:00
|
|
|
}
|
|
|
|
|
2015-10-06 10:25:16 +00:00
|
|
|
void async_fibre_free(async_fibre *fibre)
|
2015-02-17 13:30:22 +00:00
|
|
|
{
|
2015-11-22 01:14:43 +00:00
|
|
|
OPENSSL_free(fibre->fibre.uc_stack.ss_sp);
|
|
|
|
fibre->fibre.uc_stack.ss_sp = NULL;
|
2015-02-17 13:30:22 +00:00
|
|
|
}
|
2015-07-24 07:15:31 +00:00
|
|
|
|
2015-02-17 13:30:22 +00:00
|
|
|
#endif
|