2015-02-17 21:30:22 +08:00
|
|
|
/*
|
|
|
|
* Written by Matt Caswell (matt@openssl.org) for the OpenSSL project.
|
|
|
|
*/
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright (c) 2015 The OpenSSL Project. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. All advertising materials mentioning features or use of this
|
|
|
|
* software must display the following acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
|
|
|
*
|
|
|
|
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission. For written permission, please contact
|
|
|
|
* licensing@OpenSSL.org.
|
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "OpenSSL"
|
|
|
|
* nor may "OpenSSL" appear in their names without prior written
|
|
|
|
* permission of the OpenSSL Project.
|
|
|
|
*
|
|
|
|
* 6. Redistributions of any form whatsoever must retain the following
|
|
|
|
* acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
|
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*/
|
|
|
|
|
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-11-14 07:54:44 +08:00
|
|
|
pthread_key_t posixctx;
|
|
|
|
pthread_key_t posixpool;
|
2015-02-17 21:30:22 +08:00
|
|
|
|
2015-03-26 00:08:44 +08:00
|
|
|
#define STACKSIZE 32768
|
|
|
|
|
2015-11-20 05:44:13 +08:00
|
|
|
int async_global_init(void)
|
2015-11-14 07:54:44 +08:00
|
|
|
{
|
|
|
|
if (pthread_key_create(&posixctx, NULL) != 0
|
|
|
|
|| pthread_key_create(&posixpool, NULL) != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-11-20 05:44:13 +08:00
|
|
|
void async_local_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void async_global_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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-11-13 19:22:21 +08:00
|
|
|
int async_pipe(OSSL_ASYNC_FD *pipefds)
|
2015-07-24 15:15:31 +08:00
|
|
|
{
|
|
|
|
if (pipe(pipefds) == 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-13 23:21:20 +08:00
|
|
|
int async_close_fd(OSSL_ASYNC_FD fd)
|
|
|
|
{
|
|
|
|
if (close(fd) != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-11-13 19:22:21 +08:00
|
|
|
int async_write1(OSSL_ASYNC_FD fd, const void *buf)
|
2015-07-24 15:15:31 +08:00
|
|
|
{
|
|
|
|
if (write(fd, buf, 1) > 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-11-13 19:22:21 +08:00
|
|
|
int async_read1(OSSL_ASYNC_FD fd, void *buf)
|
2015-07-24 15:15:31 +08:00
|
|
|
{
|
|
|
|
if (read(fd, buf, 1) > 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-17 21:30:22 +08:00
|
|
|
#endif
|