blob: 8a02c00de05526222382eb4f77ccef763afb8ec5 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Portable interface to the CPU cycle counter
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Gilles Peskinedb09ef62020-06-03 01:43:33 +020020#include "common.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000021
Manuel Pégourié-Gonnard8903fe02015-05-12 19:30:45 +020022#if defined(MBEDTLS_TIMING_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000023
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000024#include "mbedtls/timing.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000025
Manuel Pégourié-Gonnard8903fe02015-05-12 19:30:45 +020026#if !defined(MBEDTLS_TIMING_ALT)
27
Manuel Pégourié-Gonnard325ce092016-02-22 10:33:34 +010028#if !defined(unix) && !defined(__unix__) && !defined(__unix) && \
Augustin Cavalier60bc47d2018-04-11 20:27:32 -040029 !defined(__APPLE__) && !defined(_WIN32) && !defined(__QNXNTO__) && \
Ørjan Malde479d8de2020-05-20 09:32:39 +000030 !defined(__HAIKU__) && !defined(__midipix__)
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020031#error "This module only works on Unix and Windows, see MBEDTLS_TIMING_C in mbedtls_config.h"
Manuel Pégourié-Gonnard325ce092016-02-22 10:33:34 +010032#endif
33
Paul Bakkerfa6a6202013-10-28 18:48:30 +010034#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
Paul Bakker5121ce52009-01-03 21:22:43 +000035
36#include <windows.h>
irwire931d0e2018-06-23 18:55:14 +030037#include <process.h>
Paul Bakker5121ce52009-01-03 21:22:43 +000038
39struct _hr_time
40{
41 LARGE_INTEGER start;
42};
43
44#else
45
46#include <unistd.h>
47#include <sys/types.h>
48#include <sys/time.h>
49#include <signal.h>
50#include <time.h>
51
52struct _hr_time
53{
54 struct timeval start;
55};
56
Paul Bakker9af723c2014-05-01 13:03:14 +020057#endif /* _WIN32 && !EFIX64 && !EFI32 */
Paul Bakker5121ce52009-01-03 21:22:43 +000058
TRodziewicz963bb812021-06-18 13:22:57 +020059/**
60 * \brief Return the elapsed time in milliseconds
61 *
62 * \warning May change without notice
63 *
64 * \param val points to a timer structure
65 * \param reset If 0, query the elapsed time. Otherwise (re)start the timer.
66 *
67 * \return Elapsed time since the previous reset in ms. When
68 * restarting, this is always 0.
69 *
70 * \note To initialize a timer, call this function with reset=1.
71 *
72 * Determining the elapsed time and resetting the timer is not
73 * atomic on all platforms, so after the sequence
74 * `{ get_timer(1); ...; time1 = get_timer(1); ...; time2 =
75 * get_timer(0) }` the value time1+time2 is only approximately
76 * the delay since the first reset.
77 */
Paul Bakkerfa6a6202013-10-28 18:48:30 +010078#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
Paul Bakker5121ce52009-01-03 21:22:43 +000079
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080unsigned long mbedtls_timing_get_timer( struct mbedtls_timing_hr_time *val, int reset )
Paul Bakker5121ce52009-01-03 21:22:43 +000081{
Paul Bakker5121ce52009-01-03 21:22:43 +000082 struct _hr_time *t = (struct _hr_time *) val;
83
Paul Bakker5121ce52009-01-03 21:22:43 +000084 if( reset )
Gilles Peskined92f0aa2017-10-16 19:33:06 +020085 {
Paul Bakker5121ce52009-01-03 21:22:43 +000086 QueryPerformanceCounter( &t->start );
Gilles Peskined92f0aa2017-10-16 19:33:06 +020087 return( 0 );
88 }
89 else
90 {
91 unsigned long delta;
92 LARGE_INTEGER now, hfreq;
93 QueryPerformanceCounter( &now );
94 QueryPerformanceFrequency( &hfreq );
95 delta = (unsigned long)( ( now.QuadPart - t->start.QuadPart ) * 1000ul
96 / hfreq.QuadPart );
97 return( delta );
98 }
Paul Bakker5121ce52009-01-03 21:22:43 +000099}
100
Manuel Pégourié-Gonnard470fc932014-03-27 20:07:08 +0100101#else /* _WIN32 && !EFIX64 && !EFI32 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000102
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200103unsigned long mbedtls_timing_get_timer( struct mbedtls_timing_hr_time *val, int reset )
Paul Bakker5121ce52009-01-03 21:22:43 +0000104{
Paul Bakker5121ce52009-01-03 21:22:43 +0000105 struct _hr_time *t = (struct _hr_time *) val;
106
Paul Bakker5121ce52009-01-03 21:22:43 +0000107 if( reset )
108 {
Gilles Peskined92f0aa2017-10-16 19:33:06 +0200109 gettimeofday( &t->start, NULL );
Alfred Klompb308dd72014-07-14 22:32:21 +0200110 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000111 }
Gilles Peskined92f0aa2017-10-16 19:33:06 +0200112 else
113 {
114 unsigned long delta;
115 struct timeval now;
116 gettimeofday( &now, NULL );
117 delta = ( now.tv_sec - t->start.tv_sec ) * 1000ul
118 + ( now.tv_usec - t->start.tv_usec ) / 1000;
119 return( delta );
120 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000121}
122
Manuel Pégourié-Gonnard470fc932014-03-27 20:07:08 +0100123#endif /* _WIN32 && !EFIX64 && !EFI32 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000124
Manuel Pégourié-Gonnardca3bdc52015-05-12 20:17:06 +0200125/*
126 * Set delays to watch
127 */
128void mbedtls_timing_set_delay( void *data, uint32_t int_ms, uint32_t fin_ms )
129{
130 mbedtls_timing_delay_context *ctx = (mbedtls_timing_delay_context *) data;
131
132 ctx->int_ms = int_ms;
133 ctx->fin_ms = fin_ms;
134
135 if( fin_ms != 0 )
136 (void) mbedtls_timing_get_timer( &ctx->timer, 1 );
137}
138
139/*
140 * Get number of delays expired
141 */
142int mbedtls_timing_get_delay( void *data )
143{
144 mbedtls_timing_delay_context *ctx = (mbedtls_timing_delay_context *) data;
145 unsigned long elapsed_ms;
146
147 if( ctx->fin_ms == 0 )
148 return( -1 );
149
150 elapsed_ms = mbedtls_timing_get_timer( &ctx->timer, 0 );
151
152 if( elapsed_ms >= ctx->fin_ms )
153 return( 2 );
154
155 if( elapsed_ms >= ctx->int_ms )
156 return( 1 );
157
158 return( 0 );
159}
160
Manuel Pégourié-Gonnard8903fe02015-05-12 19:30:45 +0200161#endif /* !MBEDTLS_TIMING_ALT */
Manuel Pégourié-Gonnard8903fe02015-05-12 19:30:45 +0200162#endif /* MBEDTLS_TIMING_C */