blob: 597ef75211ce99d63831172ebe141766755931be [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file timing.h
Paul Bakkere0ccd0a2009-01-04 16:27:10 +00003 *
Gilles Peskinea9edc482017-10-10 19:46:45 +02004 * \brief Portable interface to timeouts and to the CPU cycle counter
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000021 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#ifndef MBEDTLS_TIMING_H
23#define MBEDTLS_TIMING_H
Paul Bakker5121ce52009-01-03 21:22:43 +000024
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Ameroc49fbbf2019-07-04 20:01:14 +010026#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020027#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020029#endif
Paul Bakkerf2561b32014-02-06 15:11:55 +010030
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +020031#include <stdint.h>
32
Paul Bakker407a0da2013-06-27 14:29:21 +020033#ifdef __cplusplus
34extern "C" {
35#endif
36
Ron Eldor810e6502018-04-01 15:59:58 +030037#if !defined(MBEDTLS_TIMING_ALT)
38// Regular implementation
39//
40
Paul Bakker5121ce52009-01-03 21:22:43 +000041/**
42 * \brief timer structure
43 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010044struct mbedtls_timing_hr_time {
Paul Bakker5121ce52009-01-03 21:22:43 +000045 unsigned char opaque[32];
46};
47
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +020048/**
49 * \brief Context for mbedtls_timing_set/get_delay()
50 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010051typedef struct mbedtls_timing_delay_context {
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +020052 struct mbedtls_timing_hr_time timer;
53 uint32_t int_ms;
54 uint32_t fin_ms;
55} mbedtls_timing_delay_context;
56
Ron Eldor810e6502018-04-01 15:59:58 +030057#else /* MBEDTLS_TIMING_ALT */
58#include "timing_alt.h"
59#endif /* MBEDTLS_TIMING_ALT */
60
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061extern volatile int mbedtls_timing_alarmed;
Paul Bakker5121ce52009-01-03 21:22:43 +000062
63/**
64 * \brief Return the CPU cycle counter value
Manuel Pégourié-Gonnard57911092015-07-01 19:19:49 +020065 *
66 * \warning This is only a best effort! Do not rely on this!
67 * In particular, it is known to be unreliable on virtual
68 * machines.
Gilles Peskinea9edc482017-10-10 19:46:45 +020069 *
70 * \note This value starts at an unspecified origin and
71 * may wrap around.
Paul Bakker5121ce52009-01-03 21:22:43 +000072 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010073unsigned long mbedtls_timing_hardclock(void);
Paul Bakker5121ce52009-01-03 21:22:43 +000074
75/**
76 * \brief Return the elapsed time in milliseconds
77 *
78 * \param val points to a timer structure
Gilles Peskined92f0aa2017-10-16 19:33:06 +020079 * \param reset If 0, query the elapsed time. Otherwise (re)start the timer.
Gilles Peskinea9edc482017-10-10 19:46:45 +020080 *
Gilles Peskined92f0aa2017-10-16 19:33:06 +020081 * \return Elapsed time since the previous reset in ms. When
82 * restarting, this is always 0.
83 *
84 * \note To initialize a timer, call this function with reset=1.
85 *
86 * Determining the elapsed time and resetting the timer is not
87 * atomic on all platforms, so after the sequence
88 * `{ get_timer(1); ...; time1 = get_timer(1); ...; time2 =
89 * get_timer(0) }` the value time1+time2 is only approximately
90 * the delay since the first reset.
Paul Bakker5121ce52009-01-03 21:22:43 +000091 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010092unsigned long mbedtls_timing_get_timer(struct mbedtls_timing_hr_time *val, int reset);
Paul Bakker5121ce52009-01-03 21:22:43 +000093
94/**
95 * \brief Setup an alarm clock
96 *
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020097 * \param seconds delay before the "mbedtls_timing_alarmed" flag is set
Gilles Peskinea9edc482017-10-10 19:46:45 +020098 * (must be >=0)
Manuel Pégourié-Gonnarddda52132015-02-11 11:36:31 +000099 *
100 * \warning Only one alarm at a time is supported. In a threaded
101 * context, this means one for the whole process, not one per
102 * thread.
Paul Bakker5121ce52009-01-03 21:22:43 +0000103 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100104void mbedtls_set_alarm(int seconds);
Paul Bakker5121ce52009-01-03 21:22:43 +0000105
106/**
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200107 * \brief Set a pair of delays to watch
108 * (See \c mbedtls_timing_get_delay().)
109 *
Gilles Peskinea9edc482017-10-10 19:46:45 +0200110 * \param data Pointer to timing data.
Tillmann Karras588ad502015-09-25 04:27:22 +0200111 * Must point to a valid \c mbedtls_timing_delay_context struct.
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200112 * \param int_ms First (intermediate) delay in milliseconds.
Gilles Peskinea9edc482017-10-10 19:46:45 +0200113 * The effect if int_ms > fin_ms is unspecified.
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200114 * \param fin_ms Second (final) delay in milliseconds.
115 * Pass 0 to cancel the current delay.
Gilles Peskinea9edc482017-10-10 19:46:45 +0200116 *
117 * \note To set a single delay, either use \c mbedtls_timing_set_timer
118 * directly or use this function with int_ms == fin_ms.
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200119 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100120void mbedtls_timing_set_delay(void *data, uint32_t int_ms, uint32_t fin_ms);
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200121
122/**
123 * \brief Get the status of delays
124 * (Memory helper: number of delays passed.)
125 *
126 * \param data Pointer to timing data
Tillmann Karras588ad502015-09-25 04:27:22 +0200127 * Must point to a valid \c mbedtls_timing_delay_context struct.
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200128 *
Gilles Peskinea9edc482017-10-10 19:46:45 +0200129 * \return -1 if cancelled (fin_ms = 0),
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200130 * 0 if none of the delays are passed,
131 * 1 if only the intermediate delay is passed,
132 * 2 if the final delay is passed.
133 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100134int mbedtls_timing_get_delay(void *data);
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200135
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200136#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnard470fc932014-03-27 20:07:08 +0100137/**
138 * \brief Checkup routine
139 *
140 * \return 0 if successful, or 1 if a test failed
141 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100142int mbedtls_timing_self_test(int verbose);
Manuel Pégourié-Gonnard470fc932014-03-27 20:07:08 +0100143#endif
144
Paul Bakker5121ce52009-01-03 21:22:43 +0000145#ifdef __cplusplus
146}
147#endif
148
Paul Bakker5121ce52009-01-03 21:22:43 +0000149#endif /* timing.h */