blob: cb3bbb34826406ecb356c1b1e39c3c3564a238c3 [file] [log] [blame]
Paul Bakker2466d932013-09-28 14:40:38 +02001/**
2 * \file threading.h
3 *
4 * \brief Threading abstraction layer
5 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02006 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Paul Bakker2466d932013-09-28 14:40:38 +02007 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00008 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker2466d932013-09-28 14:40:38 +02009 *
Paul Bakker2466d932013-09-28 14:40:38 +020010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_THREADING_H
25#define MBEDTLS_THREADING_H
Paul Bakker2466d932013-09-28 14:40:38 +020026
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020027#if !defined(MBEDTLS_CONFIG_FILE)
Paul Bakker2466d932013-09-28 14:40:38 +020028#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020029#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020031#endif
Paul Bakker2466d932013-09-28 14:40:38 +020032
33#include <stdlib.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020039#define MBEDTLS_ERR_THREADING_FEATURE_UNAVAILABLE -0x001A /**< The selected feature is not available. */
40#define MBEDTLS_ERR_THREADING_BAD_INPUT_DATA -0x001C /**< Bad input parameters to function. */
41#define MBEDTLS_ERR_THREADING_MUTEX_ERROR -0x001E /**< Locking / unlocking / free failed with error code. */
Paul Bakker2466d932013-09-28 14:40:38 +020042
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020043#if defined(MBEDTLS_THREADING_PTHREAD)
Paul Bakker2466d932013-09-28 14:40:38 +020044#include <pthread.h>
Manuel Pégourié-Gonnard1e2eae02015-04-29 01:26:03 +020045typedef struct
46{
47 pthread_mutex_t mutex;
48 char is_valid;
49} mbedtls_threading_mutex_t;
Paul Bakker2466d932013-09-28 14:40:38 +020050#endif
51
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020052#if defined(MBEDTLS_THREADING_ALT)
53/* You should define the mbedtls_threading_mutex_t type in your header */
Paul Bakker2466d932013-09-28 14:40:38 +020054#include "threading_alt.h"
55
56/**
57 * \brief Set your alternate threading implementation function
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +020058 * pointers and initialize global mutexes. If used, this
59 * function must be called once in the main thread before any
60 * other mbed TLS function is called, and
61 * mbedtls_threading_free_alt() must be called once in the main
62 * thread after all other mbed TLS functions.
Paul Bakker2466d932013-09-28 14:40:38 +020063 *
Manuel Pégourié-Gonnard8f5fd312015-04-24 14:42:34 +020064 * \note mutex_init() and mutex_free() don't return a status code.
65 * If mutex_init() fails, it should leave its argument (the
66 * mutex) in a state such that mutex_lock() will fail when
67 * called with this argument.
68 *
Paul Bakker6838bd12013-09-30 13:56:38 +020069 * \param mutex_init the init function implementation
Paul Bakker2466d932013-09-28 14:40:38 +020070 * \param mutex_free the free function implementation
71 * \param mutex_lock the lock function implementation
72 * \param mutex_unlock the unlock function implementation
Paul Bakker2466d932013-09-28 14:40:38 +020073 */
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +020074void mbedtls_threading_set_alt( void (*mutex_init)( mbedtls_threading_mutex_t * ),
Manuel Pégourié-Gonnard8f5fd312015-04-24 14:42:34 +020075 void (*mutex_free)( mbedtls_threading_mutex_t * ),
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020076 int (*mutex_lock)( mbedtls_threading_mutex_t * ),
77 int (*mutex_unlock)( mbedtls_threading_mutex_t * ) );
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +020078
79/**
80 * \brief Free global mutexes.
81 */
82void mbedtls_threading_free_alt( void );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020083#endif /* MBEDTLS_THREADING_ALT */
Paul Bakker2466d932013-09-28 14:40:38 +020084
85/*
86 * The function pointers for mutex_init, mutex_free, mutex_ and mutex_unlock
Paul Bakker6838bd12013-09-30 13:56:38 +020087 *
88 * All these functions are expected to work or the result will be undefined.
Paul Bakker2466d932013-09-28 14:40:38 +020089 */
Manuel Pégourié-Gonnard8f5fd312015-04-24 14:42:34 +020090extern void (*mbedtls_mutex_init)( mbedtls_threading_mutex_t *mutex );
91extern void (*mbedtls_mutex_free)( mbedtls_threading_mutex_t *mutex );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020092extern int (*mbedtls_mutex_lock)( mbedtls_threading_mutex_t *mutex );
93extern int (*mbedtls_mutex_unlock)( mbedtls_threading_mutex_t *mutex );
Paul Bakker2466d932013-09-28 14:40:38 +020094
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +020095/*
96 * Global mutexes
97 */
98extern mbedtls_threading_mutex_t mbedtls_threading_readdir_mutex;
Manuel Pégourié-Gonnard864108d2015-05-29 10:11:03 +020099extern mbedtls_threading_mutex_t mbedtls_threading_gmtime_mutex;
Manuel Pégourié-Gonnard944cfe82015-05-27 20:07:18 +0200100
Paul Bakker2466d932013-09-28 14:40:38 +0200101#ifdef __cplusplus
102}
103#endif
104
105#endif /* threading.h */