2015-02-17 21:30:22 +08:00
|
|
|
/*
|
2016-05-18 02:24:46 +08:00
|
|
|
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2015-02-17 21:30:22 +08:00
|
|
|
*
|
2018-12-06 20:18:31 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:24:46 +08:00
|
|
|
* 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 21:30:22 +08:00
|
|
|
*/
|
|
|
|
|
2015-11-22 09:14:43 +08:00
|
|
|
/* This must be the first #include file */
|
2015-02-17 21:30:22 +08:00
|
|
|
#include "../async_locl.h"
|
|
|
|
|
2015-10-06 18:25:16 +08:00
|
|
|
#ifdef ASYNC_POSIX
|
2015-11-22 09:14:43 +08:00
|
|
|
|
2015-02-17 21:30:22 +08:00
|
|
|
# include <stddef.h>
|
2015-07-24 15:15:31 +08:00
|
|
|
# include <unistd.h>
|
2015-02-17 21:30:22 +08:00
|
|
|
|
2015-03-26 00:08:44 +08:00
|
|
|
#define STACKSIZE 32768
|
|
|
|
|
2016-03-08 00:55:39 +08:00
|
|
|
int ASYNC_is_capable(void)
|
2015-11-20 05:44:13 +08:00
|
|
|
{
|
2016-03-16 18:38:39 +08: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-20 05:44:13 +08:00
|
|
|
}
|
|
|
|
|
2016-03-08 00:55:39 +08:00
|
|
|
void async_local_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
2015-11-20 05:44:13 +08:00
|
|
|
|
2015-11-22 09:14:43 +08:00
|
|
|
int async_fibre_makecontext(async_fibre *fibre)
|
2015-02-17 21:30:22 +08:00
|
|
|
{
|
2015-05-05 22:08:39 +08:00
|
|
|
fibre->env_init = 0;
|
2015-11-22 09:14:43 +08: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 21:30:22 +08:00
|
|
|
}
|
|
|
|
|
2015-10-06 18:25:16 +08:00
|
|
|
void async_fibre_free(async_fibre *fibre)
|
2015-02-17 21:30:22 +08:00
|
|
|
{
|
2015-11-22 09:14:43 +08:00
|
|
|
OPENSSL_free(fibre->fibre.uc_stack.ss_sp);
|
|
|
|
fibre->fibre.uc_stack.ss_sp = NULL;
|
2015-02-17 21:30:22 +08:00
|
|
|
}
|
2015-07-24 15:15:31 +08:00
|
|
|
|
2015-02-17 21:30:22 +08:00
|
|
|
#endif
|